/* ============================================
   LiteAML — Design System & Styles
   ============================================ */

:root {
    --navy: #0B1D3A;
    --navy-light: #132B50;
    --navy-dark: #060F1F;
    --teal: #00B4D8;
    --teal-light: #48CAE4;
    --teal-dark: #0096B4;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --emerald: #10B981;
    --amber: #F59E0B;
    --crimson: #EF4444;

    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.15);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.2s ease;
    --transition-slow: 0.4s ease;
}

/* ============================================
   Reset & Base
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Components
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 180, 216, .3);
}
.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 180, 216, .4);
}

.btn-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; }

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 12px;
}
.section-tag.light { color: var(--teal-light); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

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

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.logo-accent { color: var(--teal); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--navy);
    background: var(--gray-100);
}

.nav-cta {
    background: var(--teal) !important;
    color: var(--white) !important;
    margin-left: 8px;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   Hero
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 50%, #E8F8FC 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(0,180,216,.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(239, 68, 68, .08);
    color: var(--crimson);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(239, 68, 68, .15);
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray-400);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-400);
    animation: fadeInUp 1s 2s both;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gray-400);
    border-bottom: 2px solid var(--gray-400);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================
   Trust Bar
   ============================================ */

.trust-bar {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.trust-label {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   Services
   ============================================ */

.services {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-slow);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.service-card-featured {
    border-color: var(--teal);
    grid-row: span 2;
    background: linear-gradient(180deg, rgba(0,180,216,.03) 0%, var(--white) 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--teal);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,180,216,.1) 0%, rgba(0,180,216,.05) 100%);
    border-radius: var(--radius-md);
    color: var(--teal);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-size: 14px;
    color: var(--gray-600);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============================================
   Industries
   ============================================ */

.industries {
    padding: 100px 0;
    background: var(--white);
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.industry-tab {
    padding: 12px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-500);
    border-radius: 100px;
    border: 2px solid var(--gray-200);
    transition: all var(--transition);
}
.industry-tab:hover { border-color: var(--gray-300); color: var(--navy); }
.industry-tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.industry-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.industry-panel.active { display: grid; }

.industry-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.industry-content > p {
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.7;
}

.industry-checklist li {
    position: relative;
    padding: 8px 0 8px 32px;
    font-size: 15px;
    color: var(--gray-600);
}

.industry-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300B4D8'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9 12l2 2 4-4' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.industry-checklist {
    margin-bottom: 32px;
}

.industry-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Tranche 2
   ============================================ */

.tranche2 {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
}

.tranche2 .section-tag { color: var(--teal-light); }
.tranche2 .section-title { color: var(--white); }
.tranche2 .section-subtitle { color: rgba(255,255,255,.6); }

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto 80px;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,.15);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--navy-light);
    border: 3px solid rgba(255,255,255,.2);
}

.timeline-marker.completed {
    background: var(--emerald);
    border-color: rgba(16, 185, 129, .3);
}

.timeline-marker.active {
    background: var(--teal);
    border-color: rgba(0, 180, 216, .3);
    box-shadow: 0 0 0 6px rgba(0, 180, 216, .15);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(0, 180, 216, .15); }
    50% { box-shadow: 0 0 0 12px rgba(0, 180, 216, .05); }
}

.timeline-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-light);
    margin-bottom: 4px;
}

.timeline-content h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
}

.obligations-title {
    text-align: center;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 40px;
}

.obligations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.obligation-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
}
.obligation-card:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-2px);
}

.obligation-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--teal);
    opacity: .4;
    margin-bottom: 12px;
}

.obligation-card h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 8px;
}

.obligation-card p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
}

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

.cta-card {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    text-align: left;
}

.cta-content h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 8px;
}
.cta-content p {
    color: rgba(255,255,255,.6);
    max-width: 400px;
}

/* ============================================
   Pricing
   ============================================ */

.pricing {
    padding: 100px 0;
    background: var(--gray-50);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-400);
    cursor: pointer;
    transition: color var(--transition);
}
.toggle-label.active { color: var(--navy); font-weight: 600; }

.save-badge {
    display: inline-block;
    background: rgba(16,185,129,.1);
    color: var(--emerald);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--gray-300);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.toggle-switch input:checked + .toggle-slider { background: var(--teal); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-slow);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-featured {
    border-color: var(--teal);
    padding-top: 52px;
    box-shadow: var(--shadow-lg);
}

.pricing-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--teal);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 20px;
    border-radius: 100px;
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 32px;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: var(--gray-400);
    margin-left: 4px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 14px;
}

.pricing-features li.included {
    color: var(--gray-600);
}
.pricing-features li.included::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-features li.excluded {
    color: var(--gray-300);
}
.pricing-features li.excluded::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 14px;
    width: 12px;
    height: 2px;
    background: var(--gray-300);
    border-radius: 2px;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 40px;
}

/* ============================================
   About
   ============================================ */

.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,180,216,.1);
    border-radius: var(--radius-sm);
    color: var(--teal);
    margin-bottom: 12px;
}

.value-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-badge-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 240px;
    object-fit: cover;
    width: 100%;
}

.about-team-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Free Guide
   ============================================ */

.guide {
    padding: 100px 0;
    background: var(--navy);
}

.guide-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guide-content {
    color: var(--white);
}

.guide-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 16px;
}

.guide-content > p {
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 28px;
}

.guide-includes li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-size: 15px;
    color: rgba(255,255,255,.7);
}

.guide-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2348CAE4' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.guide-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-2xl);
}

.guide-form h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

/* ============================================
   Forms
   ============================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,180,216,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group textarea { resize: vertical; }

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

.form-disclaimer {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 12px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success h3 {
    font-size: 24px;
    margin: 16px 0 8px;
}

.form-success p {
    color: var(--gray-500);
}

/* ============================================
   Contact
   ============================================ */

.contact {
    padding: 100px 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,180,216,.08);
    border-radius: var(--radius-sm);
    color: var(--teal);
}

.contact-item h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray-500);
}

.compliance-shield-wrap {
    margin-top: 16px;
}

.compliance-shield-wrap img {
    border-radius: var(--radius-lg);
    max-height: 200px;
    object-fit: cover;
    width: 100%;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.5);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
}

.footer-australian {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-light);
    margin-top: 12px !important;
}

.footer-brand .nav-logo {
    margin-bottom: 4px;
}

.footer-brand .logo-img {
    height: 38px;
}

.footer-brand .logo-text { color: var(--white); }

.footer-links h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    padding: 4px 0;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.5);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--teal);
    color: var(--white);
}

/* ============================================
   Animations
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .hero-image { max-width: 400px; margin: 0 auto; }
    .hero-scroll-indicator { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card-featured { grid-row: auto; }
    .industry-panel { grid-template-columns: 1fr; gap: 40px; }
    .industry-image { order: -1; }
    .industry-image img { max-height: 300px; object-fit: cover; width: 100%; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .guide-card { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cta-card { flex-direction: column; text-align: center; gap: 20px; }
    .cta-content p { max-width: none; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-cta { margin-left: 0 !important; text-align: center; }

    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-title { font-size: 36px; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-stat-divider { width: 60px; height: 1px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    .industry-tabs { flex-direction: column; align-items: stretch; }
    .obligations-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

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