/* assets/styles.css - Global styles reused across all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at 10% 30%, #f1f5f9, #e6edf4);
    font-family: 'Inter', sans-serif;
    color: #0a1e2f;
    line-height: 1.4;
    min-height: 100vh;
    padding: 2rem 1.5rem;
}

.container {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 52px;
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0,0,0,0.02);
    padding: 2.8rem 2.8rem 3.5rem;
}

@media (max-width: 760px) {
    body { padding: 1rem; }
    .container { padding: 1.8rem 1.5rem 2.5rem; border-radius: 36px; }
}

.agency-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.8rem;
    border-bottom: 2px solid #ecf3f8;
    padding-bottom: 1.2rem;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
    background: linear-gradient(145deg, #0F2C3D, #1B5F7A);
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px; color: white; font-size: 1.8rem;
}
.brand-name {
    font-weight: 800; font-size: 1.9rem; letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0B2F41, #1F708F);
    background-clip: text; -webkit-background-clip: text; color: transparent;
    font-family: 'Space Grotesk', monospace;
}
.agency-tag {
    background: #eef3fc; padding: 0.4rem 1.2rem; border-radius: 40px;
    font-size: 0.8rem; font-weight: 600; color: #1A6B8C;
    border: 1px solid #cde3ef;
}
.gradient-line {
    height: 4px; width: 70px;
    background: linear-gradient(90deg, #2796BD, #8ECAE6);
    border-radius: 4px; margin: 0.5rem 0 1.5rem;
}
h1 {
    font-size: 3.6rem; font-weight: 800; letter-spacing: -0.02em;
    background: linear-gradient(125deg, #0C2E3F, #216F8F, #2796BD);
    background-clip: text; -webkit-background-clip: text; color: transparent;
    margin: 1rem 0 0.8rem; line-height: 1.2;
}
.hero-description {
    font-size: 1.2rem; color: #2F556E; margin-bottom: 2rem;
    max-width: 80%; border-left: 4px solid #2796BD; padding-left: 1.2rem;
}
.countdown {
    display: flex; gap: 1.8rem; flex-wrap: wrap; margin: 2rem 0 2.2rem;
    background: #F9FCFE; padding: 1.5rem 2rem; border-radius: 56px;
    justify-content: center;
}
.countdown-item {
    background: white; padding: 1rem 1.3rem; min-width: 105px;
    text-align: center; border-radius: 32px;
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
    border: 1px solid #eef2f8;
}
.countdown-item span {
    font-size: 3rem; font-weight: 800; font-family: 'Space Grotesk', monospace;
    background: linear-gradient(145deg, #0F2F41, #247694);
    background-clip: text; -webkit-background-clip: text; color: transparent;
    display: block; line-height: 1;
}
.countdown-item label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.8px; font-weight: 700; color: #4F7A9A; margin-top: 8px; display: block; }
.form-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; }
.input-field { flex: 3; min-width: 220px; }
.input-field label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 8px; color: #1C6A8A; }
.input-field input {
    width: 100%; padding: 1rem 1.3rem; font-size: 1rem;
    border: 1.8px solid #E2EAF1; border-radius: 60px;
    background: white; font-family: 'Inter', sans-serif; outline: none;
}
.input-field input:focus { border-color: #2796BD; box-shadow: 0 0 0 3px rgba(39,150,189,0.15); }
.btn-subscribe {
    background: linear-gradient(100deg, #1B607E, #1B82A5); border: none;
    padding: 1rem 2rem; border-radius: 60px; color: white;
    font-weight: 700; font-size: 1rem; cursor: pointer;
    display: inline-flex; align-items: center; gap: 12px;
    box-shadow: 0 12px 20px -12px #1B607E80;
}
.btn-subscribe:hover { background: linear-gradient(100deg, #0F4B66, #126D8C); transform: translateY(-2px); }
.btn-subscribe:disabled { opacity: 0.6; cursor: wait; transform: none; }
.form-message {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    display: none;
}
.footer-links {
    margin-top: 2.8rem; display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: center; gap: 1.2rem;
    border-top: 1px solid #E2ECF3; padding-top: 2rem;
}
.links-group { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.links-group a {
    text-decoration: none; font-weight: 500; font-size: 0.9rem;
    color: #2C6D8F; display: inline-flex; align-items: center; gap: 8px;
}
.links-group a:hover { color: #0A2E40; text-decoration: underline; }
.learn-more-btn { background: #EFF6FA; padding: 0.5rem 1.3rem; border-radius: 60px; font-weight: 700; }
.privacy-note { font-size: 0.75rem; color: #6F8FAB; }
.micro-footer { text-align: center; font-size: 0.7rem; margin-top: 2rem; color: #8BA9C2; }
.back-link, .back-home { background: white; padding: 0.5rem 1.2rem; border-radius: 40px; text-decoration: none; font-weight: 600; color: #1A6B8C; transition: 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.back-link:hover, .back-home:hover { background: #eef3fc; transform: translateY(-1px); }

@media (max-width: 700px) {
    h1 { font-size: 2.5rem; }
    .hero-description { max-width: 100%; font-size: 1rem; }
    .countdown-item { min-width: 72px; padding: 0.6rem 0.5rem; }
    .countdown-item span { font-size: 2rem; }
    .footer-links { flex-direction: column; align-items: flex-start; }
    .links-group { flex-direction: column; gap: 0.8rem; }
}
