
:root {
    /* GoMage AIA brand colors */
    --primary: #61ce70;
    --primary-dark: #4db85d;
    --primary-light: #e8f8ea;
    --secondary: #61ce70;
    --accent: #61ce70;
    --primary-green: #61ce70;

    /* Clean white design */
    --bg-body: #ffffff;
    --bg-section: #f8fafc;
    --surface: #ffffff;
    --surface-elevated: #ffffff;
    --surface-white: #F4F4F4;
    --surface-light: #F6F9FD;

    /* Professional text hierarchy */
    --text-primary: #1A232B;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-dark: #1a1a1a;

    /* Borders & shadows */
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Components */
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-xxl: 32px;
    --ring: 0 0 0 3px rgba(97, 206, 112, 0.1);
    --ring-2: 0 0 0 2px rgba(26, 26, 26, 1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, var(--primary-light) 100%);
}

@font-face {
    font-family: 'Gilroy', sans-serif;
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy', sans-serif;
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy', sans-serif;
    src: url('../fonts/Gilroy-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy', sans-serif;
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy', sans-serif;
    src: url('../fonts/Gilroy-Extrabold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    height: 100%;
    font-family: 'Gilroy', sans-serif;
    background: var(--bg-body);
    margin: 0;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero */
.hero {
    background: var(--surface-light);
}
.hero-container {
    display: grid;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.5fr 1fr;
        padding: 71px 80px;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    background: #1A232B1A;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

#hero-title {
    margin: 0 0 20px;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    text-wrap: balance;
}
#hero-title strong {
    font-weight: 800;
}
.hero-subtitle {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: clamp(16px, 2.1vw, 18px);
    line-height: 1.4;
    margin: 0 0 32px;
}
.hero-subtitle strong {
    color: var(--accent);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 32px 0 0;
}
.hero-badge {
    color: var(--text-primary);
    font-size: clamp(12px, 5vw, 14px);
    font-weight: 500;
    position: relative;
}

.hero-badge:before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 10px;
    margin-right: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.8C2.43192 7.0496 3.23465 7.7504 4.66657 9L12 1' stroke='%2361ce70' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.hero-badge:hover {
    transform: translateY(-1px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0 16px;
    justify-content: center;
}
.hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    padding: 0 40px;
    appearance: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-xxl);
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 700;
    letter-spacing: .01em;
    transition: transform .15s ease, box-shadow .2s ease;
    text-decoration: none;
}
.hero-btn-primary {
    background: var(--primary-green);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}
.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}
.hero-btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}
.hero-btn-secondary:hover {
    background: var(--bg-section);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Hero Card */
.hero-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-card:hover {
    transform: translateY(-2px);
}

.hero-card-image {
    max-width: 568px;
}

.card-image {
    width: auto;
    max-width: 100%;
}

h2 {
    margin: 0 0 20px;
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.025em
}

label {
    display: block;
    margin: 16px 0 4px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
}

input,button{font:inherit}
input[type=text],
input[type=email],
input[type=url] {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
    color: var(--text-primary);
    font-size: 16px;
    transition: all .2s;
    box-shadow: var(--shadow-sm);
}

input::placeholder {
    color: var(--text-muted);
    opacity: 0.8
}

input:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: var(--ring-2);
    transform: translateY(-1px)
}

button {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 16px 28px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
    border: 2px solid transparent;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl)
}

button:active {
    transform: translateY(0)
}

button:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

.muted{color:var(--text-muted)}
.progress{
    height:12px;background:var(--bg-section);border-radius:20px;overflow:hidden;margin:16px 0;border:1px solid var(--border);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
}
.bar{
    height:100%;width:0;background:var(--gradient-primary);
    border-radius:20px;transition:width .3s ease;
}

a.link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    transition: color .2s, transform .2s
}

a.link:hover {
    color: var(--primary-dark);
    transform: translateY(-1px)
}

/* Sticky CTA for mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
}

@media (max-width: 768px){
    .hero{padding:64px 20px 32px}
    .wrap{padding:40px 20px}
    .card{padding:22px}
    .features{grid-template-columns:1fr;gap:16px}
    .row{flex-direction:column;align-items:stretch}
    .stats{gap:24px}
    .sticky-cta{display:block}
    .social-proof{margin-top:40px;padding:40px 20px}
    .testimonial{padding:24px}
    body{padding-bottom:80px} /* Space for sticky CTA */
}

.block-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 0;
}
.block-container.left-image {
    flex-direction: column-reverse;
}
.block-content {
    max-width: 560px;
    padding: 0 10px;
}

@media (min-width: 1024px) {
    .block-container {
        flex-direction: row;
        padding: 71px 80px;
    }
    .block-container.left-image {
        flex-direction: row;
    }
    .block-content {
        padding: 0 25px;
    }
    .hero-actions {
        justify-content: flex-start;
    }
    .hero-subtitle {
        text-wrap: balance;
    }
}

.block-title {
    font-size: clamp(24px, 1vw, 32px);
    font-weight: 700;
    margin-bottom: 16px;
}
.block-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 500;
}
.form-container {
    padding: 32px;
    margin: 0 20px;
    border-radius: 24px;
    border: 2px solid var(--accent);
    background: #fff5e6;
}
.form-wrapper {
    max-width: 1320px;
    margin: 0 20px;
}
@media (min-width: 1024px) {
    .form-wrapper {
        margin: 0 auto;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 60px;
    border-radius: 20px;
    width: 90%;
    max-width: 816px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-content #btn {
    width: 100%;
    height: 60px;
    font-size: 20px;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.form-title {
    font-size: 38px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.form-title .bold {
    font-weight: 800;
}

.form-title .bold span {
    color: var(--accent);
}

@media (max-width: 768px) {
    .hero-card-image {
        max-width: 100%;
    }

    .form-container {
        margin: 0;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}