/* ==========================================================================
   SRural Sistemas - Modern Landing Page
   Layout Model: Dr. Túlio Cioca
   Palette: Blue Theme with Green Details (Tons de Azul com Detalhes em Verde)
   ========================================================================== */

:root {
    /* Primary Color System: Shades of Blue with Green Accents */
    --brand-navy-deep: #0A192F;      /* Deep Navy Blue Background */
    --brand-blue-dark: #0F2744;       /* Dark Royal Blue */
    --brand-blue-main: #1D4ED8;       /* Primary Corporate Blue */
    --brand-blue-light: #3B82F6;      /* Vibrant Sky Blue */
    --brand-blue-glow: rgba(29, 78, 216, 0.25);

    /* Green Accents & Details */
    --brand-green-main: #10B981;      /* Mint / Emerald Green Accent */
    --brand-green-dark: #047857;       /* Dark Emerald */
    --brand-green-light: #34D399;      /* Light Mint Green */
    --brand-green-glow: rgba(16, 185, 129, 0.25);

    --brand-earth-main: #D97706;       /* Warm Amber Accent */

    --dark-bg: #0A192F;
    --dark-surface: #0F2744;
    --dark-card: #1E3A8A;

    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    --text-light-muted: #94A3B8;

    --bg-light: #F8FAFC;
    --bg-alt: #F0F9FF;               /* Soft Blue Tint */
    --bg-card: #FFFFFF;

    --border-light: #E2E8F0;
    --border-blue: rgba(29, 78, 216, 0.25);
    --border-green: rgba(16, 185, 129, 0.35);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 18px rgba(10, 25, 47, 0.08);
    --shadow-lg: 0 16px 36px rgba(10, 25, 47, 0.16);
    --shadow-blue: 0 10px 25px -5px rgba(29, 78, 216, 0.4);
    --shadow-green: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    --shadow-elegant: 0 20px 60px -20px rgba(10, 25, 47, 0.35);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--brand-navy-deep);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utilities */
.text-center { text-align: center; }
.text-white { color: #FFFFFF !important; }
.text-gray { color: var(--text-light-muted) !important; }
.bg-alt { background-color: var(--bg-alt); }
.bg-dark { background-color: var(--dark-bg); }
.mt-3 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }

.gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #34D399 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BARRA SUPERIOR (AZUL NOTURNO COM DETALHES EM VERDE) */
.top-bar {
    background-color: #061121;
    color: #E2E8F0;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #CBD5E1;
    font-weight: 500;
}

.top-item svg {
    width: 14px;
    height: 14px;
    color: var(--brand-green-light);
}

.top-item.highlight {
    color: var(--brand-green-light);
    font-weight: 600;
}

.top-portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.15);
    color: #FFFFFF;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(52, 211, 153, 0.4);
}

.top-portal-btn:hover {
    background: var(--brand-green-main);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .top-bar-container { flex-direction: column; gap: 6px; }
}

/* NAVBAR FLUTUANTE */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header-logo-img:hover {
    transform: scale(1.03);
}

.footer-logo-box {
    background: #FFFFFF;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    display: inline-block;
    width: fit-content;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.highlight-link {
    color: var(--brand-blue-main);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brand-navy-deep);
    cursor: pointer;
}

/* HERO SECTION (DEEP BLUE BACKGROUND COM DETALHES EM VERDE) */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #061121 0%, #0A192F 40%, #0F2744 100%);
    color: var(--text-light);
    padding: 80px 0 100px 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(37, 99, 235, 0.15) 50%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--brand-green-light);
    border: 1px solid rgba(52, 211, 153, 0.35);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.pill-icon {
    width: 16px;
    height: 16px;
    color: var(--brand-green-light);
}

.hero-title {
    font-size: 2.75rem;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #CBD5E1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}

.hero-mini-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #F1F5F9;
}

.hero-mini-badge svg {
    width: 14px;
    height: 14px;
    color: var(--brand-green-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* BUTTON STYLES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-emerald {
    background: linear-gradient(135deg, var(--brand-green-main), var(--brand-green-dark));
    color: #FFFFFF;
}

.btn-emerald:hover {
    background: linear-gradient(135deg, #059669, var(--brand-green-main));
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-blue {
    background: linear-gradient(135deg, var(--brand-blue-main), #1E40AF);
    color: #FFFFFF;
}

.btn-blue:hover {
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue-main));
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.shadow-emerald {
    box-shadow: var(--shadow-green);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn-outline-emerald {
    background: transparent;
    color: var(--brand-green-main);
    border: 2px solid var(--brand-green-main);
}

.btn-outline-emerald:hover {
    background: var(--brand-green-main);
    color: #FFFFFF;
}

.btn-outline-amber {
    background: transparent;
    color: var(--brand-earth-main);
    border: 2px solid var(--brand-earth-main);
}

.btn-outline-amber:hover {
    background: var(--brand-earth-main);
    color: #FFFFFF;
}

.btn-outline-blue {
    background: transparent;
    color: var(--brand-blue-main);
    border: 2px solid var(--brand-blue-main);
}

.btn-outline-blue:hover {
    background: var(--brand-blue-main);
    color: #FFFFFF;
}

/* HERO STATS */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-green-light);
}

.stat-label {
    font-size: 0.78rem;
    color: #94A3B8;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* HERO MEDIA & FLOATING GLASS CARDS */
.hero-media {
    position: relative;
}

.media-card-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-elegant);
}

.hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.glass-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 25, 47, 0.90);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.floating-card-1 {
    top: 25px;
    left: -25px;
}

.floating-card-2 {
    bottom: 25px;
    right: -20px;
}

.card-icon-box {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-box.emerald {
    background: rgba(16, 185, 129, 0.25);
    color: var(--brand-green-light);
}

.card-icon-box.amber {
    background: rgba(59, 130, 246, 0.25);
    color: #60A5FA;
}

.glass-card strong {
    display: block;
    font-size: 0.88rem;
    color: #FFFFFF;
}

.glass-card small {
    font-size: 0.75rem;
    color: #94A3B8;
}

/* SECTION STYLES */
.section {
    padding: 90px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.badge-accent {
    display: inline-block;
    color: var(--brand-blue-main);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
}

.badge-accent.light {
    color: var(--brand-green-light);
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* SIMULADOR INTERATIVO */
.widget-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.widget-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.widget-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag {
    background: rgba(16, 185, 129, 0.12);
    color: var(--brand-green-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-header h2 {
    font-size: 1.75rem;
    margin: 0.75rem 0 0.5rem 0;
}

.goal-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 2rem;
}

.goal-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.goal-btn svg {
    width: 18px;
    height: 18px;
    color: var(--brand-blue-main);
}

.goal-btn:hover, .goal-btn.active {
    background: var(--brand-blue-main);
    color: #FFFFFF;
    border-color: var(--brand-blue-main);
}

.goal-btn:hover svg, .goal-btn.active svg {
    color: var(--brand-green-light);
}

.goal-result-box {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-blue);
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: center;
}

.result-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.result-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

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

.result-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-navy-deep);
    margin-bottom: 0.5rem;
}

.result-features li svg {
    width: 16px;
    height: 16px;
    color: var(--brand-green-main);
}

/* CITAÇÃO DE PROPÓSITO */
.purpose-section {
    padding: 60px 0;
    background: var(--bg-alt);
}

.purpose-card {
    position: relative;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 40px 60px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-blue);
}

.purpose-quote-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--brand-green-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.purpose-quote-icon svg {
    width: 24px;
    height: 24px;
}

.purpose-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-navy-deep);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.purpose-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-blue-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.purpose-author svg {
    width: 16px;
    height: 16px;
    color: var(--brand-green-main);
}

/* CARDS & GRIDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-green);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-icon.emerald { background: rgba(16, 185, 129, 0.12); color: var(--brand-green-main); }
.card-icon.amber { background: rgba(59, 130, 246, 0.12); color: var(--brand-blue-main); }
.card-icon.blue { background: rgba(15, 76, 129, 0.12); color: var(--brand-navy-deep); }

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* FEATURE CARDS (CATÁLOGO DE SOLUÇÕES) */
.feature-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-img-wrapper {
    position: relative;
    height: 170px;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
}

.feature-img-wrapper img {
    max-width: 85%;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-img-wrapper img {
    transform: scale(1.06);
}

.feature-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    color: #FFFFFF;
}

.feature-tag.emerald { background: var(--brand-green-main); }
.feature-tag.amber { background: var(--brand-blue-main); }
.feature-tag.blue { background: var(--brand-navy-deep); }

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 6px;
}

.feature-list li svg {
    width: 14px;
    height: 14px;
    color: var(--brand-green-main);
}

.card-footer {
    padding: 16px 24px 24px 24px;
}

.wide-card {
    grid-column: span 2;
    padding: 24px;
}

.wide-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1rem;
}

.badge-tag {
    background: rgba(16, 185, 129, 0.12);
    color: var(--brand-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
}

/* PÚBLICO ALVO GRID */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.audience-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.audience-card:hover {
    border-color: var(--border-green);
    box-shadow: var(--shadow-md);
}

.check-icon svg {
    width: 22px;
    height: 22px;
    color: var(--brand-green-main);
}

.audience-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brand-navy-deep);
    margin-bottom: 4px;
}

.audience-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* STEP-BY-STEP PROCESS GRID */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 24px;
}

.step-number {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-green-light);
    margin-bottom: 0.75rem;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.85rem;
    color: #94A3B8;
}

.step-arrow {
    position: absolute;
    top: 24px;
    right: 16px;
    color: rgba(255, 255, 255, 0.3);
}

.step-arrow svg {
    width: 18px;
    height: 18px;
}

/* FAQ ACCORDION */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-navy-deep);
    cursor: pointer;
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-icon {
    width: 18px;
    height: 18px;
    color: var(--brand-blue-main);
}

.faq-arrow {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: var(--bg-alt);
}

.faq-answer p {
    padding: 18px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CONTACT & SEDE GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-card, .contact-form-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.info-header h3 {
    font-size: 1.25rem;
}

.info-header span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-item svg {
    width: 18px;
    height: 18px;
    color: var(--brand-green-main);
    margin-top: 2px;
}

.info-item strong {
    font-size: 0.88rem;
    color: var(--brand-navy-deep);
}

.info-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* FORM STYLES */
.form-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue-main);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-status {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    padding: 8px;
    border-radius: var(--radius-sm);
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
}

/* CTA BANNER */
.cta-banner {
    padding: 80px 0;
}

.center-buttons {
    justify-content: center;
}

/* FOOTER */
.footer {
    background-color: #061121;
    color: #CBD5E1;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-copy {
    font-size: 0.78rem;
    color: #64748B;
}

.footer-links h4, .footer-contact h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.85rem;
    color: #94A3B8;
}

.footer-links a:hover {
    color: var(--brand-green-light);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #94A3B8;
    margin-bottom: 8px;
}

.footer-contact svg {
    width: 14px;
    height: 14px;
    color: var(--brand-green-light);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero-media {
        order: -1;
    }
    .goal-result-box {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .wide-card {
        grid-column: span 1;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .floating-card-1, .floating-card-2 {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 10px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
