/* ==========================================================================
   NEXT BY MOVEMENTOR - CORE CSS STYLESHEET
   ========================================================================== */

/* --- Design Tokens --- */
:root {
    /* Color Palette */
    --color-orange: #FE4904;
    --color-orange-hover: #E33E00;
    --color-orange-light: #FFF5F1;
    --color-orange-subtle: #FFF0EB;
    
    --color-black: #0F172A;
    --color-black-pure: #000000;
    --color-gray-dark: #475569;
    --color-gray-medium: #64748B;
    --color-gray-light: #F8FAFC;
    --color-gray-border: #E2E8F0;
    
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2.5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(254, 73, 4, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    
    /* Animation Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- Base & Reset Rules --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-white);
    color: var(--color-black);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Containers --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-black-pure);
}

p {
    color: var(--color-gray-dark);
}

/* --- Button Component --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(254, 73, 4, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 73, 4, 0.4);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-black-pure);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background-color: var(--color-gray-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.btn-outline:hover {
    background-color: var(--color-orange-light);
    transform: translateY(-2px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-orange);
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--color-orange-hover);
}

.btn-text:hover .arrow-down {
    transform: translateY(3px);
}

.arrow, .arrow-down, .arrow-right, .arrow-black {
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

/* --- Header & Navigation --- */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-gray-border);
    transition: var(--transition-smooth);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-black-pure);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: var(--color-orange);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-black-pure);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    padding: 4.5rem 0 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-orange-light);
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-xl);
    margin-bottom: 1.5rem;
}

.plus-sign {
    font-weight: 800;
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--color-black-pure);
    margin-bottom: 1rem;
}

.word-next {
    display: inline-block;
    white-space: nowrap;
}

.part-ne {
    color: var(--color-black-pure);
}

.part-xt {
    color: var(--color-orange);
}

.hero-slogan {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--color-gray-medium);
    margin-bottom: 2.25rem;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-white);
    margin-left: -10px;
    transition: var(--transition-fast);
}

.avatar-img:first-child {
    margin-left: 0;
}

.avatar-img:hover {
    transform: scale(1.15) translateY(-2px);
    z-index: 10;
}

.proof-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-dark);
}

/* --- Hero Right Visual --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
}

.student-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-premium);
}

/* Dotted curve background border */
.curve-border-element {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    border: 2px dashed rgba(254, 73, 4, 0.25);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    z-index: 1;
    animation: rotateDotted 60s linear infinite;
}

@keyframes rotateDotted {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dots-pattern {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--color-orange) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.25;
    z-index: 1;
}

.dots-1 {
    top: -15px;
    left: 20px;
}

.dots-2 {
    bottom: -15px;
    right: 20px;
}

/* Floating Elements */
.plus-marker {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-orange);
    opacity: 0.7;
    z-index: 3;
    animation: floatMarker 4s ease-in-out infinite;
}

.plus-1 {
    top: 5%;
    right: -2%;
}

.plus-2 {
    bottom: 15%;
    left: -8%;
    animation-delay: 2s;
}

@keyframes floatMarker {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    transition: var(--transition-smooth);
}

.floating-card:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: var(--shadow-premium);
    background: rgba(255, 255, 255, 0.98);
}

/* Floating Card: Strengths */
.card-strengths {
    top: 18%;
    left: -12%;
    width: 170px;
}

.card-title-sm {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-medium);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.checklist-sm {
    list-style: none;
}

.checklist-sm li {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-black-pure);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.checklist-sm li:last-child {
    margin-bottom: 0;
}

.check-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.5rem;
}

/* Floating Card: Top Match */
.card-match {
    top: 5%;
    right: -10%;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.match-info {
    display: flex;
    flex-direction: column;
}

.match-label {
    font-size: 0.7rem;
    color: var(--color-gray-medium);
    font-weight: 500;
}

.match-career {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-black-pure);
}

.match-percentage {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-top: 0.25rem;
}

.progress-ring-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-text {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-black-pure);
}

/* Floating Card: Suggested Path */
.card-path {
    bottom: 8%;
    right: -10%;
    width: 150px;
}

.path-label {
    font-size: 0.7rem;
    color: var(--color-gray-medium);
    font-weight: 500;
}

.path-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-black-pure);
    margin-bottom: 0.35rem;
}

.path-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.path-link:hover {
    color: var(--color-orange-hover);
}

.path-link:hover .arrow-right {
    transform: translateX(3px);
}

/* --- Core Pillars Section --- */
.pillars-section {
    padding: 3.5rem 0;
    background-color: var(--color-white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    background-color: var(--color-gray-light);
    transform: translateY(-4px);
}

.pillar-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(254, 73, 4, 0.3);
    color: var(--color-orange);
    font-size: 1.35rem;
    flex-shrink: 0;
    background-color: var(--color-orange-light);
}

.pillar-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.725rem;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    display: block;
    margin-bottom: 0.25rem;
}

.pillar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-black-pure);
    margin-bottom: 0.4rem;
}

.pillar-description {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    line-height: 1.5;
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--color-black-pure);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-gray-medium);
    max-width: 640px;
    margin: 0 auto;
}

/* --- Guidance (Pricing) Section --- */
.guidance-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-border);
    border-radius: var(--border-radius-lg);
    padding: 2.25rem 1.75rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-num {
    position: absolute;
    top: 2rem;
    left: 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-orange);
    opacity: 0.85;
}

.pricing-card-header {
    margin-top: 1rem;
    margin-bottom: 1.75rem;
}

.package-name {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-black-pure);
    margin-bottom: 1.25rem;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.package-icon-wrapper {
    margin-bottom: 1.25rem;
}

.package-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-orange-light);
    color: var(--color-orange);
    font-size: 1.5rem;
}

.package-tagline {
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--color-gray-dark);
    line-height: 1.4;
    min-height: 40px;
}

.pricing-card-body {
    flex-grow: 1;
    margin-bottom: 2.25rem;
}

.package-features {
    list-style: none;
}

.package-features li {
    font-size: 0.825rem;
    color: var(--color-gray-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.package-features .check-icon {
    color: var(--color-orange);
    font-size: 0.8rem;
    margin-top: 2px;
}

.pricing-card-footer {
    margin-top: auto;
}

.price-container {
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--color-gray-medium);
    display: block;
    margin-bottom: 0.15rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1;
}

.gst-tag {
    font-size: 0.7rem;
    color: var(--color-gray-medium);
    font-weight: 500;
}

.package-btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.875rem;
}

/* Featured (Most Chosen) Styling */
.pricing-card.featured {
    border: 2px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    background-color: var(--color-white);
}

.pricing-card.featured:hover {
    box-shadow: var(--shadow-premium);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.95rem;
    border-radius: var(--border-radius-xl);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 10px rgba(254, 73, 4, 0.25);
}

.pricing-card.featured .card-num {
    top: 2rem;
}

.pricing-card.featured .current-price {
    color: var(--color-orange);
}

/* --- Trust Commitment Band --- */
.trust-band {
    padding: 3rem 0;
    background-color: var(--color-gray-light);
    border-top: 1px solid var(--color-gray-border);
    border-bottom: 1px solid var(--color-gray-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.trust-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-orange-subtle);
    color: var(--color-orange);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.trust-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-black-pure);
    margin-bottom: 0.35rem;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--color-gray-dark);
    line-height: 1.45;
}

/* --- How It Works --- */
.how-it-works-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 2rem;
    position: relative;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    flex: 1;
    max-width: 220px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--color-orange-light);
    border: 1px solid rgba(254, 73, 4, 0.2);
    color: var(--color-orange);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.step-card:hover .step-icon {
    background-color: var(--color-orange);
    color: var(--color-white);
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(254, 73, 4, 0.3);
}

.step-card:hover .step-number {
    background-color: var(--color-black-pure);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-black-pure);
    margin-bottom: 0.45rem;
}

.step-description {
    font-size: 0.85rem;
    color: var(--color-gray-dark);
    line-height: 1.45;
}

.step-connector {
    flex-shrink: 0;
    width: 80px;
    padding-top: 24px;
}

.connector-arrow {
    width: 100%;
    height: auto;
}

/* --- Mission Section --- */
.mission-section {
    padding: 6rem 0;
    background-color: var(--color-orange-light);
    position: relative;
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.mission-photo-column {
    position: relative;
}

.photo-container-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 2;
    box-shadow: var(--shadow-lg);
}

.mission-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-dots {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--color-orange) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.15;
    z-index: 1;
}

.mission-content-column {
    display: flex;
    flex-direction: column;
}

.mission-pre-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    margin-bottom: 0.85rem;
}

.mission-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--color-black-pure);
    line-height: 1.35;
    margin-bottom: 1.75rem;
    max-width: 580px;
}

.mission-mantra {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-black-pure);
}

.highlight-orange {
    color: var(--color-orange);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.faq-header-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid var(--color-gray-border);
    padding-bottom: 1rem;
}

.faq-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
    padding-bottom: 0.25rem;
}

.faq-link:hover {
    color: var(--color-orange-hover);
}

.faq-link:hover .arrow-right {
    transform: translateX(4px);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-border);
    padding-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.975rem;
    color: var(--color-black-pure);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-orange);
}

.faq-icon {
    font-size: 0.75rem;
    color: var(--color-gray-medium);
    transition: var(--transition-smooth);
    margin-left: 1rem;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.answer-content {
    padding: 0.5rem 0 1rem 0;
}

.answer-content p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--color-gray-dark);
}

/* --- Final CTA Banner --- */
.final-cta-section {
    padding: 2.5rem 0 6rem 0;
}

.cta-banner {
    background-color: var(--color-orange);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 15px 30px rgba(254, 73, 4, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-sparkle {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 1.25rem;
    animation: bounceSparkle 3s ease-in-out infinite;
}

@keyframes bounceSparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.cta-banner-title {
    font-size: clamp(1.4rem, 2.5vw, 1.95rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.35;
}

.cta-banner-btn {
    flex-shrink: 0;
    padding: 0.95rem 1.95rem;
    font-size: 0.95rem;
}

.cta-banner-btn:hover .arrow-black {
    transform: translateX(4px);
}

/* --- Footer --- */
.footer {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-gray-border);
    padding: 4.5rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.footer-logo {
    height: 48px;
    width: auto;
    align-self: flex-start;
}

.footer-mantra {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-black-pure);
}

.footer-location {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    flex: 1.2;
}

.loc-icon {
    color: var(--color-orange);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-address {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--color-gray-dark);
    line-height: 1.5;
}

.footer-address strong {
    color: var(--color-black-pure);
    font-size: 0.9rem;
}

.footer-copyright {
    text-align: right;
    font-size: 0.8rem;
    color: var(--color-gray-medium);
    line-height: 1.5;
    flex: 1;
}

/* --- Scroll Reveal Animation class --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- Responsive Media Queries --- */

/* Desktop layout constraint helper */
@media (min-width: 992px) {
    .desktop-only {
        display: block;
    }
}

@media (max-width: 1200px) {
    .hero-grid {
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .desktop-only {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 1rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pillar-card {
        background-color: var(--color-gray-light);
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .step-card {
        max-width: 280px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
        margin: -0.5rem 0;
        width: 30px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo {
        align-self: center;
    }

    .footer-location {
        justify-content: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }

    .brand-logo {
        height: 38px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        z-index: 1005;
        transition: var(--transition-smooth);
        padding-bottom: 5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hamburger Active state */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-section {
        padding: 2.5rem 0 3.5rem 0;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-btn-main {
        width: 100%;
    }

    .floating-card {
        display: none; /* Hide floating badges on small mobile screens to keep layout simple and tidy */
    }

    .curve-border-element {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
