/* ===================== ROOT VARIABLES ===================== */
:root {
    --color-navy: #0F0729;
    --color-navy-dark: #0A0420;
    --color-navy-deep: #07021A;
    --color-orange: #FF5D29;
    --color-orange-light: #FF8A4D;
    --color-orange-dark: #E64118;
    --color-red: #D63D38;
    --color-red-dark: #B82E2A;
    --color-cream: #FCEFE6;
    --color-cream-light: #FDF4ED;
    --color-text-muted: #6B6B7B;
    --color-text-light: #B8B5C9;
    --color-white: #ffffff;
    --color-green-bg: #C8F0DC;
    --color-green-text: #1A6B3F;
    --color-green-dot: #1F8A4D;

    --font-body: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ===================== GLOBAL ===================== */
* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

a { text-decoration: none; }

img { max-width: 100%; height: auto; }

.text-orange { color: var(--color-orange) !important; }
.text-red { color: var(--color-red) !important; }

/* ===================== NAVBAR ===================== */
.site-navbar {
    background-color: var(--color-white);
    padding: 0.85rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    z-index: 1000;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    margin-right: 2px;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
    margin-right: 2px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--color-navy);
    letter-spacing: 0.5px;
    margin-left: -2px;
    line-height: 1;
}

.navbar-nav .nav-link {
    color: var(--color-navy) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-orange) !important;
}

/* ===================== BUTTONS ===================== */
.btn {
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.25s ease;
}

.btn-primary-orange {
    background: linear-gradient(90deg, #FF7842 0%, #FF4E18 50%, #E63A0F 100%);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(255, 78, 24, 0.35);
}

.btn-primary-orange:hover {
    background: linear-gradient(90deg, #FF8852 0%, #FF5E28 50%, #F64A1F 100%);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255, 78, 24, 0.45);
}

.btn-outline-light-custom {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: calc(0.75rem - 2px) calc(1.75rem - 2px);
}

.btn-outline-light-custom:hover {
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    border-color: var(--color-white);
}

/* Button with circular arrow */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding-right: 0.55rem;
}

.btn-arrow-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
}

.btn-dark-cta {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 0.85rem 1.75rem;
    display: block;
    width: 100%;
    text-align: center;
}

.btn-dark-cta:hover {
    background: var(--color-navy-dark);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-lg-cta {
    padding: 1rem 2.25rem;
    width: auto;
    display: inline-block;
    font-size: 1rem;
}

/* ===================== HERO ===================== */
.hero-section {
    position: relative;
    background: var(--color-navy-deep);
    color: var(--color-white);
    padding: 130px 0 100px;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://goodintake.com/assets/images/Hero-banner-1920%C3%97700.png');
    background-size: cover;
    background-position: center right;
    opacity: 0.45;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(7, 2, 26, 0.98) 0%,
        rgba(7, 2, 26, 0.92) 35%,
        rgba(15, 7, 41, 0.65) 65%,
        rgba(110, 30, 35, 0.45) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.pill-tag {
    display: inline-block;
    border: 1px solid rgba(242, 107, 26, 0.4);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.75rem;
    letter-spacing: -1.5px;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero-buttons .btn {
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
}

/* ===================== PROBLEM SECTION ===================== */
.problem-section {
    background: var(--color-cream);
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
}

.section-label.red { color: var(--color-red); }
.section-label.orange { color: var(--color-orange); }

.section-heading {
    font-size: 2.85rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-heading.dark { color: var(--color-navy); }
.section-heading.light { color: var(--color-white); }

.section-sub {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 720px;
    line-height: 1.7;
}

.problem-points-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.problem-points p {
    color: #4a4a5a;
    font-size: 0.98rem;
    line-height: 1.55;
}

.problem-points strong {
    color: var(--color-navy);
    font-weight: 600;
}

.problem-item {
    align-items: flex-start;
}

.check-circle {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #0F0729;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    margin-top: 2px;
    position: relative;
    flex-shrink: 0;
}

.check-icon::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 6px;
    left: 10px;
}

.closing-line {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* ===================== SIGMA SECTION ===================== */
.sigma-section {
    background: radial-gradient(ellipse at center, #1A0E4A 0%, #11063A 70%, #0D0530 100%);
    color: var(--color-white);
    padding: 100px 0;
    position: relative;
}

.sigma-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.sigma-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 820px;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.sigma-sub strong { color: var(--color-white); font-weight: 600; }

.sigma-with {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.7);
    margin-top: 2rem;
}

.sigma-icons {
    max-width: 1100px;
    margin: 0 auto;
}

.sigma-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.sigma-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
}

.sigma-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-orange);
    box-shadow: 0 0 12px rgba(242, 107, 26, 0.7);
}

.sigma-icon-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.65rem;
}

.sigma-icon-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    max-width: 200px;
    margin: 0 auto;
}

.text-orange-bright {
    color: var(--color-orange);
    font-weight: 700;
}

.sigma-buttons .btn {
    margin: 0.5rem;
}

/* ===================== FIVE WAYS ===================== */
.fiveways-section {
    background: var(--color-white);
    padding: 100px 0;
}

.way-card {
    background: var(--color-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(26, 17, 71, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.way-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(26, 17, 71, 0.15);
}

/*.way-card-img {*/
/*    height: 200px;*/
/*    overflow: hidden;*/
/*}*/

.way-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.way-card-body {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.way-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.way-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-red);
    color: var(--color-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0.85rem;
    flex-shrink: 0;
}

.way-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
}

.way-tagline {
    color: var(--color-orange);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.way-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.badge-green {
    display: inline-flex;
    align-items: center;
    background: var(--color-green-bg);
    color: var(--color-green-text);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.badge-green .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-green-dot);
    margin-right: 7px;
}

.way-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.way-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
    color: #4a4a5a;
    font-size: 0.92rem;
    line-height: 1.55;
}

.way-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-orange);
}

/* ===================== READY (ORANGE CTA) ===================== */
.ready-section {
    background: linear-gradient(135deg, rgba(245, 138, 61, 0.92) 0%, rgba(224, 64, 32, 0.90) 60%, rgba(185, 21, 41, 0.92) 100%),
                url('https://goodintake.com/assets/images/Footer-banner-1920%C3%97700.png') center center / cover no-repeat;
    padding: 90px 0;
    color: var(--color-white);
}

.ready-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.ready-sub {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================== STOP SECTION ===================== */
.stop-section {
    background: var(--color-navy-deep);
    padding: 100px 0;
    position: relative;
    color: var(--color-white);
    overflow: hidden;
}

.stop-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center right;
    opacity: 0.25;
    z-index: 0;
}

.stop-section .container {
    position: relative;
    z-index: 1;
}

.stop-title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    letter-spacing: -0.5px;
}

.stop-desc, .stop-final {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 640px;
}

.stop-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-orange);
    letter-spacing: 3px;
    margin: 1.5rem 0 1rem;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 70px 0 30px;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--color-white);
    letter-spacing: 0.5px;
    margin-left: -2px;
    line-height: 1;
}

.footer-tagline {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 420px;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 4px;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
    .hero-title { font-size: 3.75rem; }
    .section-heading { font-size: 2.5rem; }
    .sigma-title { font-size: 3.25rem; }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--color-white);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    .hero-section { padding: 110px 0 70px; min-height: auto; }
    .hero-title { font-size: 3rem; }
    .section-heading { font-size: 2.1rem; }
    .sigma-title { font-size: 2.75rem; }
    .ready-title { font-size: 2.25rem; }
    .stop-title { font-size: 2.5rem; }
    .closing-line { font-size: 1.4rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.4rem; }
    .hero-sub { font-size: 1rem; }
    .section-heading { font-size: 1.85rem; }
    .sigma-title { font-size: 2.25rem; }
    .ready-title { font-size: 1.85rem; }
    .stop-title { font-size: 2rem; }
    .closing-line { font-size: 1.2rem; }
    .problem-section, .sigma-section, .fiveways-section,
    .ready-section, .stop-section { padding: 60px 0; }
    .hero-buttons .btn { display: block; width: 100%; margin-right: 0; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 2rem; }
    .pill-tag { font-size: 0.65rem; padding: 0.4rem 0.9rem; letter-spacing: 1px; }
    .sigma-icon-circle { width: 60px; height: 60px; }
    .way-title { font-size: 1.2rem; }
}