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

:root {
    --green-900: #064e3b;
    --green-800: #065f46;
    --green-700: #047857;
    --green-600: #059669;
    --green-500: #10b981;
    --green-400: #34d399;
    --green-300: #6ee7b7;
    --green-100: #d1fae5;
    --green-50: #ecfdf5;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --bg-white: #ffffff;
    --bg-light: #f8fffe;
    --bg-section: #f0fdf4;
    --text-primary: #0f1f18;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    --border: #d1fae5;
    --border-dark: #a7f3d0;
    --gradient-cta: linear-gradient(135deg, #059669 0%, #14b8a6 100%);
    --gradient-hero: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
    --gradient-text: linear-gradient(135deg, #059669 0%, #14b8a6 100%);
    --footer-bg: #0a1a12;
    --shadow-green: 0 20px 60px rgba(5, 150, 105, 0.15);
    --shadow-card: 0 4px 24px rgba(5, 150, 105, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0.9rem 0;
    transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(5, 150, 105, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    display: block;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--green-600);
}

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

.btn-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: all 0.25s;
}

.btn-nav-link:hover {
    color: var(--green-600);
    background: var(--green-50);
}

.btn-primary {
    background: var(--gradient-cta);
    color: white;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 2px solid var(--border-dark);
    padding: 0.7rem 1.6rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s;
}

.btn-secondary:hover {
    border-color: var(--green-600);
    color: var(--green-600);
    background: var(--green-50);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

.hero {
    padding: 140px 0 100px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
}

.shape-1 {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 20%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1.5px solid var(--border-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--green-700);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-card);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-500);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-heading {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-600);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-dark);
}

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

.link-card {
    background: white;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    box-shadow: 0 32px 80px rgba(5, 150, 105, 0.18);
    width: 100%;
    max-width: 440px;
    overflow: hidden;
}

.link-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 1.25rem;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
}

.link-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.link-card-dot.green { background: #34d399; }
.link-card-dot.yellow { background: #fbbf24; }
.link-card-dot.red { background: #f87171; }

.link-card-url {
    font-size: 0.82rem;
    color: var(--green-700);
    font-weight: 600;
    margin-left: 8px;
    font-family: 'Courier New', monospace;
}

.link-card-body {
    padding: 2rem 1.5rem;
}

.routing-diagram {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.route-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.route-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--green-50);
    border: 2px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-source span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-700);
}

.route-arrow {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
}

.route-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--green-400), var(--teal-400));
    position: relative;
}

.route-line.animated-line::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: slide-dot 2s linear infinite;
}

@keyframes slide-dot {
    0% { left: 0; opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.route-destinations {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.route-dest {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1.5px solid;
    transition: all 0.25s;
}

.route-dest.ios {
    background: #f0f9ff;
    border-color: #bae6fd;
    color: #0369a1;
}

.route-dest.android {
    background: #f0fdf4;
    border-color: var(--border-dark);
    color: var(--green-700);
}

.route-dest.web {
    background: #fefce8;
    border-color: #fde68a;
    color: #92400e;
}

.route-dest.inapp {
    background: #fdf4ff;
    border-color: #e9d5ff;
    color: #7c3aed;
}

.floating-badge {
    position: absolute;
    background: white;
    border: 1.5px solid var(--border-dark);
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.15);
}

.badge-top {
    top: 8%;
    right: -4%;
    animation: float-badge 4s ease-in-out infinite;
}

.badge-bottom {
    bottom: 10%;
    left: -5%;
    animation: float-badge 4s ease-in-out infinite 1.5s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--green-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-badge-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--green-700);
    line-height: 1.2;
}

.floating-badge-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--green-50);
    color: var(--green-700);
    border: 1.5px solid var(--border-dark);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.75px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

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

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

.feature-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2.25rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--green-400);
    box-shadow: var(--shadow-green);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--green-50);
    border: 1.5px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--green-600);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-cta);
    border-color: transparent;
    color: white;
}

.feature-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card p {
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.feature-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-700);
    background: var(--green-50);
    border: 1px solid var(--border-dark);
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
}

.how-it-works {
    padding: 100px 0;
    background: var(--bg-section);
}

.steps-container {
    margin-top: 0;
}

.steps-track {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 240px;
    text-align: center;
}

.step-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--green-400);
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.step-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: white;
    border: 2px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--green-600);
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

.step:hover .step-icon {
    background: var(--gradient-cta);
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.3);
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 34px;
    flex-shrink: 0;
    gap: 0;
    color: var(--green-500);
}

.connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--green-300), var(--teal-400));
}

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

.attribution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.lead-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 1.25rem 0 2rem;
}

.attribution-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.attr-method {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1.5px solid var(--border);
    transition: all 0.25s;
}

.attr-method:hover {
    border-color: var(--green-400);
    background: var(--green-50);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.1);
}

.attr-method-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-50);
    border: 1.5px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.attr-method h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.attr-method p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.mmp-panel {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-green);
}

.mmp-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mmp-panel-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mmp-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-600);
    background: var(--green-50);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--border-dark);
}

.mmp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.mmp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.mmp-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.mmp-logo-more {
    background: var(--green-800);
    font-size: 0.65rem;
}

.mmp-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
}

.mmp-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.method-pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-700);
    background: var(--green-50);
    border: 1.5px solid var(--border-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

.stats-banner {
    padding: 80px 0;
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
}

.stats-banner-item {
    text-align: center;
}

.stats-banner-value {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stats-banner-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.analytics-section {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.analytics-list {
    list-style: none;
    margin: 1.5rem 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.analytics-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.dashboard-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-green);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.dashboard-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dashboard-period {
    font-size: 0.82rem;
    color: var(--text-muted);
    background: var(--bg-section);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.dash-metric {}

.dash-metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.dash-metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.dash-metric-change {
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

.dash-metric-change.up {
    color: var(--green-600);
}

.dashboard-chart-area {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-section);
    border-radius: 12px;
    height: 100px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100%;
}

.chart-bar {
    flex: 1;
    background: var(--green-200, #a7f3d0);
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    transition: background 0.3s;
}

.chart-bar.active {
    background: var(--gradient-cta);
}

.dashboard-channels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.channel-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.channel-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    width: 85px;
    flex-shrink: 0;
}

.channel-bar-track {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.channel-bar {
    height: 100%;
    background: var(--gradient-cta);
    border-radius: 3px;
}

.channel-pct {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green-600);
    width: 36px;
    text-align: right;
    flex-shrink: 0;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1.5px solid var(--border);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-50);
    border: 1.5px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s;
}

a.contact-detail-value:hover {
    color: var(--green-600);
}

.contact-form-wrap {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-green);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-dark);
    border-radius: 10px;
    background: var(--bg-light);
    color: var(--text-primary);
    transition: all 0.25s;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.footer {
    padding: 5rem 0 2rem;
    background: var(--footer-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-email {
    color: var(--green-400);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-email:hover {
    color: var(--green-300);
}

.footer-links-col h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links-col a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s;
    font-weight: 500;
}

.footer-links-col a:hover {
    color: var(--green-400);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: #475569;
    font-size: 0.88rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 360px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar.mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        gap: 1rem;
    }

    .btn-nav-link {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--green-50);
        border: 1.5px solid var(--border-dark);
        border-radius: 8px;
        cursor: pointer;
        color: var(--green-700);
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-heading {
        font-size: 2.4rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats-row {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        padding: 0;
        min-width: 100px;
    }

    .steps-track {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
        padding-left: 34px;
        margin: -10px 0;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .mmp-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .routing-diagram {
        flex-direction: column;
    }

    .route-arrow {
        transform: rotate(90deg);
        width: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .stats-banner-value {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}
