/* ==========================================
   IROAS Landing Page Styles
   ========================================== */

/* ==========================================
   CSS Variables & Root Styles
   ========================================== */
:root {
    /* IROAS Brand Colors */
    --colorPrimary: #8CBC43;
    --colorPrimaryDark: #7AAD35;
    --colorPrimaryLight: #A3D15A;
    --colorSecondary: #6B9B2D;
    --colorAccent: #8CBC43;
    --colorSuccess: #8CBC43;
    --colorDanger: #ef4444;
    --colorWarning: #f59e0b;
    --colorDark: #0C121D;
    --colorDarkSecondary: #202426;
    --colorCharcoal: #202426;
    --colorGray100: #f1f5f9;
    --colorGray200: #e2e8f0;
    --colorGray300: #cbd5e1;
    --colorGray400: #94a3b8;
    --colorGray500: #64748b;
    --colorGray600: #475569;
    --colorGray700: #334155;
    --colorWhite: #ffffff;
    --fontFamily: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadowSmall: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadowMedium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadowLarge: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadowXlarge: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadowGlow: 0 0 40px rgba(140, 188, 67, 0.3);
    --borderRadius: 12px;
    --borderRadiusSmall: 8px;
    --borderRadiusLarge: 20px;
    --transitionFast: 0.2s ease;
    --transitionMedium: 0.3s ease;
    --transitionSlow: 0.5s ease;
}

/* ==========================================
   Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fontFamily);
    color: var(--colorDark);
    line-height: 1.6;
    background-color: var(--colorWhite);
    overflow-x: hidden;
}

/* ==========================================
   Typography
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* ==========================================
   Buttons
   ========================================== */
.btnPrimary {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorPrimaryDark) 100%);
    color: var(--colorWhite);
    border: none;
    padding: 16px 28px;
    border-radius: var(--borderRadiusSmall);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transitionMedium);
    box-shadow: 0 4px 15px rgba(140, 188, 67, 0.3);
    /*display: inline-flex;*/
    align-items: center;
    gap: 8px;
}

.btnPrimary:hover {
    background: linear-gradient(135deg, var(--colorPrimaryDark) 0%, var(--colorPrimary) 100%);
    color: var(--colorWhite);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 188, 67, 0.4);
}

.btnOutline {
    background: transparent;
    color: var(--colorPrimary);
    border: 2px solid var(--colorPrimary);
    padding: 10px 26px;
    border-radius: var(--borderRadiusSmall);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transitionMedium);
}

.btnOutline:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    transform: translateY(-2px);
}

.btnLarge {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btnBlock {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   Section Tags & Titles
   ========================================== */
.sectionTag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(140, 188, 67, 0.15) 0%, rgba(140, 188, 67, 0.05) 100%);
    color: var(--colorPrimary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.sectionTagLight {
    background: rgba(255, 255, 255, 0.15);
    color: var(--colorWhite);
}

.sectionTitle {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--colorDark);
    margin-bottom: 16px;
}

.sectionTitleLight {
    color: var(--colorWhite);
}

.sectionSubtitle {
    font-size: 1.15rem;
    color: var(--colorGray500);
    max-width: 600px;
    margin: 0 auto;
}

.sectionSubtitleLight {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   Navbar Styles
   ========================================== */
.navbarMain {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    transition: all var(--transitionMedium);
    border-bottom: 1px solid transparent;
}

.navbarMain.navbarScrolled {
    padding: 12px 0;
    border-bottom: 1px solid var(--colorGray200);
    box-shadow: var(--shadowMedium);
}

.navbarBrand {
    display: flex;
    align-items: center;
}

.brandLogo {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brandLogoImg {
    height: 40px;
    width: auto;
}

.footerLogoImg {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
}

.navbarNavLinks .nav-link {
    color: var(--colorGray600);
    font-weight: 500;
    padding: 8px 16px;
    transition: all var(--transitionFast);
    position: relative;
}

.navbarNavLinks .nav-link:hover {
    color: var(--colorPrimary);
}

.navbarNavLinks .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--colorPrimary);
    transition: all var(--transitionFast);
    transform: translateX(-50%);
}

.navbarNavLinks .nav-link:hover::after {
    width: 60%;
}

.navbarToggler {
    border: none;
    padding: 8px;
}

.navbarToggler:focus {
    box-shadow: none;
}

/* ==========================================
   Hero Section
   ========================================== */
.heroSection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.heroBackground {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.heroGradientOrb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.heroGradientOrbOne {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(140, 188, 67, 0.3) 0%, rgba(107, 155, 45, 0.2) 100%);
    top: -200px;
    right: -100px;
    animation: floatOrb 8s ease-in-out infinite;
}

.heroGradientOrbTwo {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(140, 188, 67, 0.15) 0%, rgba(32, 36, 38, 0.1) 100%);
    bottom: -100px;
    left: -100px;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.heroContent {
    position: relative;
    z-index: 1;
}

.heroBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: #b45309;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
}

.heroTitle {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--colorDark);
    margin-bottom: 20px;
    line-height: 1.15;
}

.heroTitleHighlight {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heroSubtitle {
    font-size: 1.2rem;
    color: var(--colorGray500);
    margin-bottom: 32px;
    max-width: 540px;
}

.heroPricing {
    margin-bottom: 32px;
}

.heroPricingBox {
    display: inline-flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--colorDark) 0%, var(--colorDarkSecondary) 100%);
    padding: 20px 32px;
    border-radius: var(--borderRadius);
    color: var(--colorWhite);
}

.heroPricingLabel {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.heroPricingAmount {
    font-size: 2.5rem;
    font-weight: 800;
}

.heroPricingNote {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 4px;
}

.heroCta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.heroTrust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.heroTrustItem {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--colorGray600);
    font-size: 0.95rem;
}

.heroTrustItem i {
    color: var(--colorSuccess);
    font-size: 1.1rem;
}

/* Hero Image/Cards */
.heroImageCol {
    display: flex;
    justify-content: center;
}

.heroImageWrapper {
    position: relative;
    /* width: 400px;
    height: 400px; */
}

.heroImageCard {
    position: absolute;
    background: var(--colorWhite);
    border-radius: var(--borderRadius);
    padding: 16px 24px;
    box-shadow: var(--shadowLarge);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.heroImageCard span {
    font-weight: 600;
    color: var(--colorDark);
    font-size: 0.95rem;
}

.heroCardIcon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.heroImageCardOne {
    top: 20px;
    left: 0;
    animation-delay: 0s;
}

.heroImageCardOne .heroCardIcon {
    background: linear-gradient(135deg, rgba(140, 188, 67, 0.15) 0%, rgba(140, 188, 67, 0.05) 100%);
    color: var(--colorPrimary);
}

.heroImageCardTwo {
    top: 120px;
    right: 0;
    animation-delay: 1s;
}

.heroImageCardTwo .heroCardIcon {
    background: linear-gradient(135deg, rgba(140, 188, 67, 0.15) 0%, rgba(140, 188, 67, 0.05) 100%);
    color: var(--colorSuccess);
}

.heroImageCardThree {
    bottom: 80px;
    left: 20px;
    animation-delay: 2s;
}

.heroImageCardThree .heroCardIcon {
    background: linear-gradient(135deg, rgba(140, 188, 67, 0.15) 0%, rgba(140, 188, 67, 0.05) 100%);
    color: var(--colorSecondary);
}

.heroImageCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadowGlow);
}

.heroImageCenterContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--colorWhite);
    text-align: center;
}

.heroImageCenterContent i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.heroImageCenterContent span {
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================
   Why IROAS Section
   ========================================== */
.whyIroasSection {
    padding: 100px 0;
    background: var(--colorWhite);
}

.whyIroasContent {
    margin-top: 48px;
}

.whyIroasProblem {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: var(--borderRadiusLarge);
    padding: 36px;
    height: 100%;
}

.whyIroasProblemTitle {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--colorDanger);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.whyIroasProblemTitle i {
    font-size: 1.5rem;
}

.whyIroasProblemText {
    color: var(--colorGray600);
    margin-bottom: 20px;
}

.whyIroasProblemList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whyIroasProblemList li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--colorGray600);
    padding: 10px 0;
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.whyIroasProblemList li:last-child {
    border-bottom: none;
}

.whyIroasProblemList li i {
    color: var(--colorDanger);
    font-size: 1.1rem;
}

.whyIroasSolution {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--borderRadiusLarge);
    padding: 36px;
    height: 100%;
}

.whyIroasSolutionTitle {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--colorSuccess);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.whyIroasSolutionTitle i {
    font-size: 1.5rem;
}

.whyIroasSolutionText {
    color: var(--colorGray600);
    margin-bottom: 16px;
}

.whyIroasSolutionText strong {
    color: var(--colorDark);
}

.whyIroasQuote {
    background: var(--colorWhite);
    border-left: 4px solid var(--colorSuccess);
    padding: 20px;
    border-radius: 0 var(--borderRadiusSmall) var(--borderRadiusSmall) 0;
    margin-top: 24px;
}

.whyIroasQuote p {
    color: var(--colorDark);
    font-style: italic;
    margin-bottom: 8px;
}

.whyIroasQuote span {
    color: var(--colorSuccess);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================
   Who Is For Section
   ========================================== */
.whoIsForSection {
    padding: 100px 0;
    background: var(--colorGray100);
}

.whoIsForGrid {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
}

.whoIsForCard {
    background: var(--colorWhite);
    border-radius: var(--borderRadiusLarge);
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all var(--transitionMedium);
    border: 1px solid var(--colorGray200);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whoIsForCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadowXlarge);
    border-color: transparent;
}

.whoIsForCardIcon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(140, 188, 67, 0.15) 0%, rgba(140, 188, 67, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--colorPrimary);
    transition: all var(--transitionMedium);
}

.whoIsForCard:hover .whoIsForCardIcon {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    color: var(--colorWhite);
}

.whoIsForCardTitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--colorDark);
    margin-bottom: 12px;
}

.whoIsForCardText {
    color: var(--colorGray500);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================
   Features Section
   ========================================== */
.featuresSection {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--colorDark) 0%, var(--colorDarkSecondary) 100%);
}

.featuresGrid {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
}

.featureCard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--borderRadiusLarge);
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all var(--transitionMedium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featureCard:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.featureCardHighlight {
    background: linear-gradient(135deg, rgba(140, 188, 67, 0.2) 0%, rgba(107, 155, 45, 0.2) 100%);
    border-color: rgba(140, 188, 67, 0.3);
}

.featureCardBadge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--colorWhite);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.featureCardIcon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--colorWhite);
}

.featureCardTitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--colorWhite);
    margin-bottom: 12px;
}

.featureCardText {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Pricing CTA Box */
.pricingCtaBox {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorPrimaryDark) 100%);
    border-radius: var(--borderRadiusLarge);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 48px;
    box-shadow: var(--shadowGlow);
}

.pricingCtaTitle {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--colorWhite);
    margin-bottom: 8px;
}

.pricingCtaText {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.pricingCtaAmount {
    display: flex;
    align-items: flex-start;
    color: var(--colorWhite);
    margin-bottom: 12px;
}

.pricingCtaCurrency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 8px;
}

.pricingCtaPrice {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.pricingCtaNote {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricingCtaAction .btnPrimary {
    background: var(--colorWhite);
    color: var(--colorPrimary);
    box-shadow: var(--shadowMedium);
}

.pricingCtaAction .btnPrimary:hover {
    background: var(--colorGray100);
    color: var(--colorPrimaryDark);
}

/* ==========================================
   How It Works Section
   ========================================== */
.howItWorksSection {
    padding: 100px 0;
    background: var(--colorWhite);
    position: relative;
}

.howItWorksSteps {
    margin-top: 64px;
    position: relative;
}

.howItWorksStep {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.howItWorksStepNumber {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    color: var(--colorWhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 2;
}

.howItWorksStepIcon {
    width: 100px;
    height: 100px;
    background: var(--colorGray100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 24px;
    font-size: 2.5rem;
    color: var(--colorPrimary);
    transition: all var(--transitionMedium);
}

.howItWorksStep:hover .howItWorksStepIcon {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    color: var(--colorWhite);
    transform: scale(1.05);
}

.howItWorksStepTitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--colorDark);
    margin-bottom: 12px;
}

.howItWorksStepText {
    color: var(--colorGray500);
    font-size: 1rem;
    max-width: 280px;
    margin: 0 auto;
}

.howItWorksConnector {
    position: absolute;
    top: 90px;
    left: 25%;
    right: 25%;
    height: 4px;
    display: none;
}

.howItWorksConnectorLine {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border-radius: 2px;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faqSection {
    padding: 100px 0;
    background: var(--colorGray100);
}

.faqAccordion {
    margin-top: 48px;
}

.faqItem {
    background: var(--colorWhite);
    border: 1px solid var(--colorGray200);
    border-radius: var(--borderRadius) !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.faqItem:not(:first-of-type) {
    border-top: 1px solid var(--colorGray200);
}

.faqButton {
    padding: 24px 28px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--colorDark);
    background: transparent;
    border: none;
    box-shadow: none !important;
}

.faqButton:not(.collapsed) {
    color: var(--colorPrimary);
    background: transparent;
}

.faqButton::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238CBC43'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform var(--transitionMedium);
}

.faqButton:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.faqBody {
    padding: 0 28px 24px;
    color: var(--colorGray600);
    line-height: 1.7;
}

/* ==========================================
   Application Form Section
   ========================================== */
.applicationFormSection {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--colorDark) 0%, var(--colorDarkSecondary) 100%);
}

.applicationFormWrapper {
    background: var(--colorWhite);
    border-radius: var(--borderRadiusLarge);
    overflow: hidden;
    box-shadow: var(--shadowXlarge);
}

.applicationFormInfo {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorPrimaryDark) 100%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.applicationFormTitle {
    font-size: 2rem;
    font-weight: 800;
    color: var(--colorWhite);
    margin-bottom: 16px;
    line-height: 1.3;
}

.applicationFormSubtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.applicationFormBenefits {
    margin-bottom: 32px;
}

.applicationFormBenefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--colorWhite);
    padding: 10px 0;
}

.applicationFormBenefit i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.applicationFormPricing {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--borderRadius);
    padding: 20px;
    text-align: center;
}

.applicationFormPricingLabel {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.applicationFormPricingAmount {
    display: block;
    color: var(--colorWhite);
    font-size: 2.5rem;
    font-weight: 800;
}

.applicationFormContainer {
    padding: 48px;
}

.applicationForm {
    max-height: none;
}

.formSection {
    margin-bottom: 28px;
}

.formSectionTitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--colorDark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--colorGray100);
}

.formGroup {
    margin-bottom: 18px;
}

.formLabel {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--colorGray700);
    margin-bottom: 8px;
}

.formRequired {
    color: var(--colorDanger);
}

.formInput,
.formSelect,
.formTextarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--colorGray200);
    border-radius: var(--borderRadiusSmall);
    font-size: 0.95rem;
    color: var(--colorDark);
    background: var(--colorWhite);
    transition: all var(--transitionFast);
}

.formSelect {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 44px;
    cursor: pointer;
}

.formInput:focus,
.formSelect:focus,
.formTextarea:focus {
    outline: none;
    border-color: var(--colorPrimary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.formRadioGroup {
    display: flex;
    gap: 24px;
}

.formRadio {
    display: flex;
    align-items: center;
}

.formRadio .form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border: 2px solid var(--colorGray300);
}

.formRadio .form-check-input:checked {
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.formCheckboxGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.formCheckbox {
    display: flex;
    align-items: center;
}

.formCheckbox .form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 2px solid var(--colorGray300);
    border-radius: 4px;
}

.formCheckbox .form-check-input:checked {
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.formSectionConsent {
    background: var(--colorGray100);
    padding: 20px;
    border-radius: var(--borderRadiusSmall);
    margin-bottom: 24px;
}

.formConsentLabel {
    font-size: 0.9rem;
    color: var(--colorGray600);
}

.formSubmit {
    margin-top: 24px;
}

.formGroupConditional {
    margin-top: 12px;
    padding-left: 20px;
    border-left: 3px solid var(--colorGray200);
}

/* ==========================================
   Form Color Overrides (Brand Primary)
   ========================================== */

/* Input Focus State */
.formInput:focus,
.formSelect:focus,
.formTextarea:focus {
    outline: none;
    border-color: var(--colorPrimary);
    box-shadow: 0 0 0 4px rgba(140, 188, 67, 0.2);
    /* Brand color with opacity */
}

/* Checkbox & Radio - Checked State (Bootstrap classes) */
.form-check-input:checked {
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

/* Checkbox & Radio - Focus State */
.form-check-input:focus {
    border-color: var(--colorPrimary);
    box-shadow: 0 0 0 4px rgba(140, 188, 67, 0.2);
}

/* Native/General Radio/Checkbox overrides (Modern fix for all inputs) */
input[type="radio"],
input[type="checkbox"],
.native-radio {
    accent-color: var(--colorPrimary);
}

/* ==========================================
   Footer Section
   ========================================== */
.footerSection {
    background: var(--colorDark);
    padding: 48px 0 24px;
}

.footerBrand {
    margin-bottom: 24px;
}

.footerBrand .brandLogo {
    font-size: 1.5rem;
}

.footerTagline {
    color: var(--colorGray400);
    font-size: 0.95rem;
    margin-top: 8px;
}

.footerLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-end;
}

.footerLinks a {
    color: var(--colorGray400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transitionFast);
}

.footerLinks a:hover {
    color: var(--colorWhite);
}

.footerBottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footerCopyright {
    color: var(--colorGray500);
    font-size: 0.9rem;
    margin: 0;
}

.customOutlineButton {
    border-radius: 8px;
    padding: 12px 36px;
    font-size: 1.05rem;
    font-weight: 500;
    border: 2px solid var(--colorPrimary);
    color: var(--colorPrimary);
}

.btnResetOutline {
    border: 2px solid var(--colorPrimary);
    padding: 13px 16px;
    border-radius: 8px;
    color: var(--colorPrimary);
    font-weight: 500;
}

/* ==========================================
   Media Queries
   ========================================== */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .howItWorksConnector {
        display: block;
    }
}

/* Medium devices (tablets, 768px to 991px) */
@media (max-width: 991.98px) {
    .heroSection {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .heroTitle {
        font-size: 2.75rem;
    }

    .heroImageCol {
        margin-top: 48px;
    }

    .heroImageWrapper {
        width: 320px;
        height: 320px;
    }

    .sectionTitle {
        font-size: 2.25rem;
    }

    .pricingCtaBox {
        flex-direction: column;
        text-align: center;
        padding: 36px;
    }

    .pricingCtaNote {
        justify-content: center;
    }

    .applicationFormInfo {
        padding: 36px;
    }

    .applicationFormContainer {
        padding: 36px;
    }

    .applicationFormTitle {
        font-size: 1.75rem;
    }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (max-width: 767.98px) {
    .navbarMain {
        padding: 12px 0;
    }

    .navbarNavLinks {
        padding: 16px 0;
    }

    .navbarNavLinks .nav-link {
        padding: 12px 0;
    }

    .heroSection {
        padding: 90px 0 50px;
    }

    .heroTitle {
        font-size: 2.25rem;
    }

    .heroSubtitle {
        font-size: 1.05rem;
    }

    .heroCta {
        flex-direction: column;
    }

    .heroCta .btn {
        width: 100%;
        justify-content: center;
    }

    .heroTrust {
        flex-direction: column;
        gap: 12px;
    }

    .heroImageWrapper {
        width: 280px;
        height: 280px;
    }

    .heroImageCard {
        padding: 12px 16px;
    }

    .heroImageCard span {
        font-size: 0.85rem;
    }

    .heroCardIcon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .heroImageCenter {
        width: 100px;
        height: 100px;
    }

    .heroImageCenterContent i {
        font-size: 1.5rem;
    }

    .heroImageCenterContent span {
        font-size: 0.7rem;
    }

    .sectionTitle {
        font-size: 1.85rem;
    }

    .sectionSubtitle {
        font-size: 1rem;
    }

    .whyIroasSection,
    .whoIsForSection,
    .featuresSection,
    .howItWorksSection,
    .faqSection,
    .applicationFormSection {
        padding: 70px 0;
    }

    .whyIroasProblem,
    .whyIroasSolution {
        padding: 28px;
        margin-bottom: 24px;
    }

    .howItWorksStep {
        margin-bottom: 40px;
    }

    .pricingCtaBox {
        padding: 28px;
    }

    .pricingCtaTitle {
        font-size: 1.35rem;
    }

    .pricingCtaPrice {
        font-size: 3rem;
    }

    .formCheckboxGrid {
        grid-template-columns: 1fr;
    }

    .applicationFormInfo {
        padding: 28px;
    }

    .applicationFormContainer {
        padding: 28px;
    }

    .applicationFormTitle {
        font-size: 1.5rem;
    }

    .footerLinks {
        justify-content: center;
        margin-top: 24px;
    }

    .footerBrand {
        text-align: center;
    }

    .faqButton {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faqBody {
        padding: 0 20px 18px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .heroTitle {
        font-size: 1.85rem;
    }

    .heroPricingBox {
        padding: 16px 24px;
    }

    .heroPricingAmount {
        font-size: 2rem;
    }

    .heroImageWrapper {
        width: 240px;
        height: 240px;
    }

    .heroImageCardOne {
        top: 10px;
        left: -10px;
    }

    .heroImageCardTwo {
        top: 90px;
        right: -10px;
    }

    .heroImageCardThree {
        bottom: 40px;
        left: 10px;
    }

    .sectionTitle {
        font-size: 1.65rem;
    }

    .sectionTag {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .btnLarge {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .whyIroasSection,
    .whoIsForSection,
    .featuresSection,
    .howItWorksSection,
    .faqSection,
    .applicationFormSection {
        padding: 50px 0;
    }

    .applicationFormInfo,
    .applicationFormContainer {
        padding: 24px;
    }

    .formRadioGroup {
        flex-direction: column;
        gap: 12px;
    }

    .pricingCtaAmount {
        display: block;
    }
}

/* ==========================================
   Hero Image Updates (V3)
   ========================================== */
.heroImageWrapper {
    position: relative;
    z-index: 1;
    /* Remove fixed dimensions if any remain from V2 */
    width: auto;
    height: auto;
}

.heroImageWrapper img {
    border-radius: 24px;
    height: 500px;
    width: 100%;
    object-fit: cover;
    /* Soft premium shadow */
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(140, 188, 67, 0.1);
    /* Subtle green glow match brand */
    /* Float Animation */
    animation: floatHeroImage 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.heroImageWrapper img:hover {
    transform: translateY(-5px);
}

@keyframes floatHeroImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive adjustments for the new image */
@media (max-width: 991.98px) {
    .heroImageWrapper {
        /* Override specific V2 wrapper constraints if they exist in media queries above */
        width: 100% !important;
        height: auto !important;
        max-width: 500px;
        margin: 0 auto;
    }

    .heroImageWrapper img {
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .heroImageWrapper img {
        height: 300px;
    }
}