/* ==========================================================
   FOUNDATION PACKAGE PAGE — CSS
   Theme: Green + Blue (Same as Cogentix)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --fn-bg:        linear-gradient(145deg, #0a1f3d 0%, #1a4a6e 35%, #2d7a4a 65%, #0a0e17 100%);
    --fn-surface:   #121a2b;
    --fn-border:    #24304a;
    --fn-text:      #e7edf6;
    --fn-text-dim:  #8b97ad;
    --fn-green:     #7ee787;
    --fn-green-2:   #539E10;
    --fn-cyan:      #5fe6d6;
    --fn-blue:      #4a9eff;
    --fn-amber:     #ffb86c;
}

/* ==========================================================
   SECTION 1: HERO — Professional Business Design
   ========================================================== */

.fn-hero-section {
    position: relative;
    padding: 170px 0 120px 0;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1f3d 0%, #143d5c 40%, #1d5c4a 70%, #0a1a0f 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Grid pattern */
.fn-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 40%, #000 0%, transparent 80%);
            mask-image: radial-gradient(ellipse 90% 70% at 30% 40%, #000 0%, transparent 80%);
    z-index: 0;
}

/* Soft ambient glow */
.fn-hero-section::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(45, 122, 74, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.fn-hero-section .container {
    position: relative;
    z-index: 1;
}

.fn-hero-content {
    max-width: 780px;
    position: relative;
}

/* Foundation badge */
.fn-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    color: #7ee787;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(126, 231, 135, 0.08);
    border: 1px solid rgba(126, 231, 135, 0.25);
    margin-bottom: 28px;
}

.fn-hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7ee787;
    box-shadow: 0 0 12px rgba(126, 231, 135, 0.8);
    animation: fnTagPulse 2s ease-in-out infinite;
}

@keyframes fnTagPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(126, 231, 135, 0.5); transform: scale(1); }
    50% { box-shadow: 0 0 18px rgba(126, 231, 135, 1); transform: scale(1.15); }
}

/* Title */
.fn-hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: -1.5px;
}

.fn-hero-title span {
    display: block;
    color: #7ee787;
    position: relative;
    padding-bottom: 8px;
}

.fn-hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7ee787, #5fe6d6);
    border-radius: 4px;
}

/* Subtitle */
.fn-hero-subtext {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #b8c9d8;
    max-width: 640px;
    margin: 0 0 40px;
    padding-left: 20px;
    border-left: 3px solid #7ee787;
}

/* Hero Feature List */
.fn-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

.fn-hero-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #c8d4e2;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.fn-hero-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 10px;
    font-weight: 700;
    color: #0a1f3d;
    background: #7ee787;
    border-radius: 50%;
    flex-shrink: 0;
}

.fn-hero-features li:hover {
    background: rgba(126, 231, 135, 0.12);
    border-color: rgba(126, 231, 135, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero CTA Buttons */
.fn-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.fn-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0a1f3d;
    background: linear-gradient(135deg, #7ee787, #5fe6d6);
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 24px rgba(126, 231, 135, 0.25);
    position: relative;
    overflow: hidden;
}

.fn-hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5fe6d6, #7ee787);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.fn-hero-btn-primary span {
    position: relative;
    z-index: 1;
}

.fn-hero-btn-primary svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.fn-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(126, 231, 135, 0.4);
    color: #0a1f3d;
}

.fn-hero-btn-primary:hover::before {
    opacity: 1;
}

.fn-hero-btn-primary:hover svg {
    transform: translateX(5px);
}

.fn-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    padding: 16px 32px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.35s ease;
}

.fn-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ==========================================================
   SECTION 2: PRICING BANNER
   ========================================================== */

.fn-pricing-section {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #0a1f3d 0%, #143d5c 40%, #1d5c4a 70%, #0a1a0f 100%);
    border: none;
}

.fn-pricing-banner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    transform: translateY(-50%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Top accent line */
.fn-pricing-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7ee787, #5fe6d6, #4a9eff);
}

.fn-pricing-banner-left {
    flex: 1;
    min-width: 280px;
}

.fn-pricing-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    color: #7ee787;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.fn-pricing-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #7ee787;
    border-radius: 2px;
}

.fn-pricing-amount {
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.fn-pricing-amount span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #8b97ad;
    font-family: "Inter", sans-serif;
    letter-spacing: 0;
    margin-top: 6px;
}

.fn-pricing-banner-right {
    flex-shrink: 0;
}

.fn-pricing-tagline {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #c8d4e2;
    margin: 0 0 16px;
    font-style: italic;
    max-width: 380px;
    line-height: 1.6;
}

.fn-pricing-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a1f3d;
    background: linear-gradient(135deg, #7ee787, #5fe6d6);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(126, 231, 135, 0.25);
}

.fn-pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(126, 231, 135, 0.4);
    color: #0a1f3d;
}

.fn-pricing-cta svg {
    transition: transform 0.3s ease;
}

.fn-pricing-cta:hover svg {
    transform: translateX(4px);
}

/* ==========================================================
   SECTION 3: WHAT'S INCLUDED — Lightweight Glow Cards
   ========================================================== */

.fn-included-section {
    padding: 100px 0 120px;
    background: linear-gradient(160deg, #0a1f3d 0%, #123a52 40%, #1d5c4a 70%, #0a0e17 100%);
    position: relative;
    overflow: hidden;
}

.fn-included-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(126, 231, 135, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(95, 230, 214, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 0%, transparent 80%);
            mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.fn-included-section .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
}

/* Header */
.fn-included-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    position: relative;
}

.fn-included-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 600;
    color: #7ee787;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(126, 231, 135, 0.08);
    border: 1px solid rgba(126, 231, 135, 0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fn-included-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7ee787;
    box-shadow: 0 0 12px rgba(126, 231, 135, 0.9);
    animation: fnDotPulse 2s ease-in-out infinite;
}

@keyframes fnDotPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.fn-included-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #eef3fa;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.fn-included-title span {
    background: linear-gradient(90deg, #7ee787, #5fe6d6 50%, #4a9eff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fn-included-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16.5px;
    line-height: 1.7;
    color: #a9b7cc;
    margin: 0;
}

/* Cards Grid */
.fn-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================================
   LIGHTWEIGHT GLOW CARD
   ========================================================== */

.fn-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, 
                box-shadow 0.35s ease, 
                border-color 0.35s ease,
                background 0.35s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fnCardFadeIn 0.6s ease forwards;
}

.fn-card:nth-child(1) { animation-delay: 0.05s; }
.fn-card:nth-child(2) { animation-delay: 0.10s; }
.fn-card:nth-child(3) { animation-delay: 0.15s; }
.fn-card:nth-child(4) { animation-delay: 0.20s; }
.fn-card:nth-child(5) { animation-delay: 0.25s; }
.fn-card:nth-child(6) { animation-delay: 0.30s; }
.fn-card:nth-child(7) { animation-delay: 0.35s; }
.fn-card:nth-child(8) { animation-delay: 0.40s; }

@keyframes fnCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient border on hover (CSS-only, no JS) */
.fn-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, 
        rgba(126, 231, 135, 0.5), 
        rgba(95, 230, 214, 0.3) 50%,
        rgba(74, 158, 255, 0.5)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.fn-card:hover::before {
    opacity: 1;
}

/* Top shimmer bar */
.fn-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #7ee787, 
        #5fe6d6, 
        transparent
    );
    transition: left 0.8s ease;
}

.fn-card:hover::after {
    left: 100%;
}

.fn-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(126, 231, 135, 0.1);
    border-color: rgba(126, 231, 135, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

/* Card number badge */
.fn-card-number {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: "JetBrains Mono", monospace;
    font-size: 42px;
    font-weight: 700;
    color: rgba(126, 231, 135, 0.08);
    line-height: 1;
    letter-spacing: -2px;
    pointer-events: none;
    transition: color 0.35s ease, transform 0.35s ease;
    z-index: 1;
}

.fn-card:hover .fn-card-number {
    color: rgba(126, 231, 135, 0.22);
    transform: scale(1.1);
}

/* Card Header */
.fn-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(126, 231, 135, 0.05), transparent);
    position: relative;
    z-index: 1;
}

.fn-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(145deg, rgba(126, 231, 135, 0.15), rgba(95, 230, 214, 0.1));
    border: 1px solid rgba(126, 231, 135, 0.2);
    box-shadow: 0 4px 14px rgba(126, 231, 135, 0.1);
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fn-card:hover .fn-card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(126, 231, 135, 0.3);
}

.fn-card-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #eef3fa;
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.fn-card:hover .fn-card-title {
    color: #7ee787;
}

/* Card Body */
.fn-card-body {
    padding: 18px 24px 24px;
    position: relative;
    z-index: 1;
}

.fn-card-body p {
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    line-height: 1.75;
    color: #b8c4d8;
    margin: 0;
    transition: color 0.3s ease;
}

.fn-card:hover .fn-card-body p {
    color: #d0dae8;
}

/* Responsive */
@media (max-width: 992px) {
    .fn-included-title {
        font-size: 38px;
    }
    
    .fn-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .fn-included-section {
        padding: 70px 0 90px;
    }
    
    .fn-included-title {
        font-size: 30px;
    }
    
    .fn-included-subtitle {
        font-size: 15px;
    }
    
    .fn-card-header {
        padding: 20px 20px 14px;
    }
    
    .fn-card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .fn-card-title {
        font-size: 17px;
    }
    
    .fn-card-body {
        padding: 14px 20px 20px;
    }
    
    .fn-card-body p {
        font-size: 13.5px;
    }
    
    .fn-card-number {
        font-size: 34px;
        top: 16px;
        right: 18px;
    }
}

@media (max-width: 480px) {
    .fn-included-title {
        font-size: 26px;
    }
    
    .fn-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* ==========================================================
   SECTION 4: WHO IT'S FOR
   ========================================================== */

.fn-who-section {
    padding: 100px 0;
    background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 30%, #bbf7d0 60%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.fn-who-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
    animation: fnGridPulse 8s ease-in-out infinite;
}

@keyframes fnGridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.fn-who-section .container {
    position: relative;
    z-index: 1;
}

.fn-who-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(5, 150, 105, 0.15);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.fn-who-card:hover {
    transform: translateY(-6px);
}

.fn-who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #059669, #34d399, #10b981, #5fe6d6, #059669);
    background-size: 300% auto;
    animation: fnBorderShift 4s linear infinite;
}

@keyframes fnBorderShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.fn-who-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-size: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
    margin-bottom: 24px;
    animation: fnIconFloat 4s ease-in-out infinite;
}

@keyframes fnIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.fn-who-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #064e3b;
    margin: 0 0 16px;
    line-height: 1.2;
}

.fn-who-title span {
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fn-who-text {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 auto;
    max-width: 720px;
}

/* ==========================================================
   SECTION 5: CTA BANNER
   ========================================================== */

.fn-cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.fn-cta-banner {
    background: linear-gradient(135deg, #43b1b9 0%, #063d53 100%);
    border-radius: 24px;
    padding: 60px 50px;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(4, 24, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.fn-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(126, 231, 135, 0.15), transparent 70%);
    border-radius: 50%;
    animation: fnCtaFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes fnCtaFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.2); }
}

.fn-cta-banner h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
    line-height: 1.25;
}

.fn-cta-banner p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    position: relative;
    z-index: 1;
}

.fn-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #041800;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.fn-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #7ee787, #5fe6d6);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.fn-cta-btn:hover {
    color: #041800;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(126, 231, 135, 0.4);
}

.fn-cta-btn:hover::before {
    transform: translateX(0);
}

.fn-cta-btn svg {
    transition: transform 0.3s ease;
}

.fn-cta-btn:hover svg {
    transform: translateX(5px);
}

/* ==========================================================
   RESPONSIVE — All Sections
   ========================================================== */

@media (max-width: 992px) {
    .fn-hero-title {
        font-size: 48px;
    }
    
    .fn-hero-subtext {
        font-size: 16px;
    }
    
    .fn-pricing-banner {
        padding: 40px 40px;
        transform: translateY(-30%);
    }
    
    .fn-pricing-amount {
        font-size: 26px;
    }
    
    .fn-included-title {
        font-size: 38px;
    }
    
    .fn-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 22px;
    }
    
    .fn-who-title {
        font-size: 28px;
    }
    
    .fn-cta-banner h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .fn-hero-section {
        padding: 130px 0 100px;
        min-height: auto;
    }
    
    .fn-hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }
    
    .fn-hero-title span::after {
        width: 60px;
        height: 3px;
    }
    
    .fn-hero-subtext {
        font-size: 15px;
        padding-left: 16px;
    }
    
    .fn-hero-features {
        gap: 10px;
    }
    
    .fn-hero-features li {
        font-size: 13px;
        padding: 7px 14px;
    }
    
    .fn-hero-btn-primary,
    .fn-hero-btn-secondary {
        padding: 14px 26px;
        font-size: 14px;
    }
    
    .fn-pricing-banner {
        padding: 30px 24px;
        transform: translateY(-20%);
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .fn-pricing-amount {
        font-size: 24px;
    }
    
    .fn-pricing-amount span {
        font-size: 13px;
    }
    
    .fn-pricing-tagline {
        font-size: 14px;
        max-width: 100%;
    }
    
    .fn-included-section {
        padding: 70px 0 90px;
    }
    
    .fn-included-title {
        font-size: 30px;
    }
    
    .fn-included-subtitle {
        font-size: 15px;
    }
    
    .fn-card-header {
        padding: 20px 20px 14px;
    }
    
    .fn-card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .fn-card-title {
        font-size: 17px;
    }
    
    .fn-card-body {
        padding: 14px 20px 20px;
    }
    
    .fn-card-body p {
        font-size: 13.5px;
    }
    
    .fn-card-number {
        font-size: 34px;
        top: 16px;
        right: 18px;
    }
    
    .fn-who-section {
        padding: 70px 0;
    }
    
    .fn-who-card {
        padding: 40px 24px;
    }
    
    .fn-who-title {
        font-size: 24px;
    }
    
    .fn-who-text {
        font-size: 15px;
    }
    
    .fn-cta-banner {
        padding: 40px 28px;
    }
    
    .fn-cta-banner h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .fn-hero-title {
        font-size: 30px;
    }
    
    .fn-hero-tag {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }
    
    .fn-pricing-banner {
        padding: 24px 20px;
    }
    
    .fn-pricing-amount {
        font-size: 20px;
    }
    
    .fn-pricing-cta {
        padding: 12px 22px;
        font-size: 14px;
    }
    
    .fn-included-title {
        font-size: 26px;
    }
    
    .fn-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .fn-who-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .fn-cta-banner h2 {
        font-size: 20px;
    }
    
    .fn-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .fn-card,
    .fn-card::before,
    .fn-card::after,
    .fn-card-icon::after,
    .fn-spectra,
    .fn-who-icon,
    .fn-cta-banner::before,
    .fn-who-card::before {
        animation: none !important;
    }
    
    .fn-card {
        opacity: 1;
        transform: none;
    }
}