:root {
    --navy-980: #07111f;
    --navy-940: #0b1828;
    --navy-900: #102338;
    --navy-860: #17304b;
    --teal: #2aa198;
    --teal-soft: rgba(42, 161, 152, 0.16);
    --amber: #f2a84b;
    --amber-soft: rgba(242, 168, 75, 0.16);
    --line: rgba(169, 197, 224, 0.16);
    --line-strong: rgba(169, 197, 224, 0.28);
    --text-main: #f1f6fb;
    --text-soft: #c9d7e6;
    --text-dim: #9eb2c6;
    --card: rgba(12, 25, 40, 0.74);
    --card-strong: rgba(17, 34, 54, 0.9);
    --surface: rgba(255, 255, 255, 0.03);
    --shadow: 0 24px 70px rgba(4, 11, 18, 0.28);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 12% 8%, rgba(42, 161, 152, 0.18), transparent 32%),
        radial-gradient(circle at 85% 6%, rgba(242, 168, 75, 0.14), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #0b1828 48%, #09131f 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 80%);
    z-index: -2;
}

a {
    color: inherit;
}

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

h1,
h2,
h3 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(7, 17, 31, 0.84);
    border-bottom: 1px solid rgba(169, 197, 224, 0.12);
}

.nav-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
}

.brand-mark {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--text-main);
}

.brand-note {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-main);
    transform: translateY(-1px);
}

.lang-switch {
    border: 1px solid rgba(242, 168, 75, 0.36);
    background: rgba(242, 168, 75, 0.08);
    padding: 10px 14px;
    border-radius: 999px;
}

.section {
    position: relative;
    padding: 104px 0;
    border-top: 1px solid rgba(169, 197, 224, 0.08);
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(720px 180px at 50% 0%, rgba(255, 255, 255, 0.04), transparent 75%);
    pointer-events: none;
}

.hero-section {
    padding-top: 88px;
    border-top: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 32px;
    align-items: start;
}

.hero-copy,
.hero-panel,
.info-card,
.problem-card,
.output-card,
.table-card,
.panel-card,
.price-card,
.assurance-card,
.step-card,
.team-card,
.contact-card,
.form-panel {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title {
    margin-top: 18px;
    font-size: clamp(2.8rem, 6vw, 5.1rem);
    max-width: 11ch;
}

.hero-subtitle {
    margin-top: 18px;
    max-width: 68ch;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button-primary,
.button-secondary,
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.button-primary,
.submit-button {
    color: #12202e;
    background: linear-gradient(135deg, var(--amber) 0%, #f7c06e 100%);
    box-shadow: 0 18px 40px rgba(242, 168, 75, 0.18);
}

.button-secondary {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line-strong);
}

.button-primary:hover,
.button-secondary:hover,
.submit-button:hover {
    transform: translateY(-1px);
}

.hero-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-strip span {
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(169, 197, 224, 0.12);
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-panel {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(169, 197, 224, 0.16);
    background:
        linear-gradient(180deg, rgba(16, 35, 56, 0.92) 0%, rgba(9, 20, 32, 0.9) 100%);
    box-shadow: var(--shadow);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    padding: 18px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(169, 197, 224, 0.12);
}

.stat-card strong {
    display: block;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--text-dim);
    line-height: 1.55;
    font-size: 0.88rem;
}

.snapshot-card {
    margin-top: 18px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(42, 161, 152, 0.09), rgba(42, 161, 152, 0.03));
    border: 1px solid rgba(42, 161, 152, 0.22);
}

.snapshot-title {
    color: var(--text-main);
    font-weight: 800;
    margin-bottom: 16px;
}

.snapshot-row {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.snapshot-row:first-of-type {
    border-top: none;
    padding-top: 0;
}

.snapshot-row span {
    color: var(--text-main);
    font-weight: 800;
}

.snapshot-row small {
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.55;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-head.align-left {
    margin-left: 0;
    text-align: left;
}

.section-head h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
    margin-top: 14px;
}

.audience-grid,
.problem-grid,
.outputs-grid,
.pricing-grid,
.steps-grid,
.team-grid {
    display: grid;
    gap: 20px;
}

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

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

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

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.steps-grid,
.team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.info-card,
.problem-card,
.output-card,
.panel-card,
.price-card,
.assurance-card,
.step-card,
.team-card,
.contact-card,
.form-panel,
.highlight-card {
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(169, 197, 224, 0.14);
    background: var(--card);
    box-shadow: var(--shadow);
}

.info-card h3,
.problem-card h3,
.output-card h3,
.panel-card h3,
.price-card h3,
.assurance-card h3,
.step-card h3,
.team-card h3,
.contact-card h3,
.form-panel h3 {
    font-size: 1.35rem;
}

.info-card p,
.problem-card p,
.output-card p,
.panel-card p,
.step-card p,
.team-card p,
.contact-card p,
.form-panel p {
    margin-top: 12px;
}

.card-index,
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--teal-soft);
    border: 1px solid rgba(42, 161, 152, 0.28);
    color: var(--text-main);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.problem-card h3,
.step-card h3,
.team-card h3 {
    margin-top: 18px;
}

.effect-tag {
    display: inline-flex;
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(242, 168, 75, 0.1);
    border: 1px solid rgba(242, 168, 75, 0.22);
    color: #f8d8ad;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
}

.highlight-card {
    margin-top: 22px;
    background:
        linear-gradient(180deg, rgba(42, 161, 152, 0.1) 0%, rgba(16, 35, 56, 0.9) 100%);
    border: 1px solid rgba(42, 161, 152, 0.28);
}

.highlight-card strong {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 1.1rem;
}

.highlight-card p + p {
    margin-top: 12px;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 22px;
    align-items: start;
}

.table-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(169, 197, 224, 0.14);
    background: var(--card-strong);
    box-shadow: var(--shadow);
}

.table-scroll {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.service-table th,
.portfolio-table th,
.service-table td,
.portfolio-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(169, 197, 224, 0.12);
    vertical-align: top;
}

.service-table th,
.portfolio-table thead th {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-main);
}

.service-table td,
.portfolio-table td,
.portfolio-table tbody th {
    color: var(--text-soft);
    line-height: 1.65;
}

.service-table tr:last-child th,
.service-table tr:last-child td,
.portfolio-table tr:last-child th,
.portfolio-table tr:last-child td {
    border-bottom: none;
}

.portfolio-table thead {
    background: rgba(255, 255, 255, 0.04);
}

.portfolio-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.table-footnote {
    margin-top: 14px;
    font-size: 0.88rem;
    color: var(--text-dim);
}

.bullet-list {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--text-soft);
    line-height: 1.7;
}

.bullet-list li + li {
    margin-top: 10px;
}

.panel-note {
    margin-top: 22px;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(42, 161, 152, 0.24);
    background: rgba(42, 161, 152, 0.08);
}

.panel-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-main);
}

.plan-label,
.role-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(169, 197, 224, 0.16);
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price {
    margin-top: 18px;
    color: var(--text-main);
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1;
}

.price small {
    display: block;
    margin-top: 10px;
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
    color: var(--text-dim);
}

.portfolio-section .table-card {
    background: linear-gradient(180deg, rgba(17, 34, 54, 0.94) 0%, rgba(10, 21, 34, 0.94) 100%);
}

.cta-section {
    padding-bottom: 116px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
    gap: 24px;
    align-items: start;
}

.cta-copy h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-copy p {
    margin-top: 16px;
}

.contact-card {
    margin-top: 24px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.contact-list li + li {
    margin-top: 12px;
}

.contact-list a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
}

.contact-list a:hover {
    color: var(--amber);
}

.form-group + .form-group {
    margin-top: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(169, 197, 224, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    font: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group textarea {
    min-height: 138px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(42, 161, 152, 0.42);
    background: rgba(255, 255, 255, 0.06);
}

.submit-button {
    margin-top: 22px;
    width: 100%;
}

.site-footer {
    border-top: 1px solid rgba(169, 197, 224, 0.1);
    background: rgba(7, 17, 31, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.8fr);
    gap: 24px;
    padding: 36px 0 22px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-copy {
    max-width: 54ch;
}

.footer-grid h3 {
    font-size: 1.05rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    margin: 0;
    padding: 0 20px 26px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.88rem;
}

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

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

@media (max-width: 1080px) {
    .hero-grid,
    .split-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .outputs-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .section {
        padding: 82px 0;
    }

    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .audience-grid,
    .problem-grid,
    .outputs-grid,
    .pricing-grid,
    .steps-grid,
    .team-grid,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        max-width: 14ch;
    }

    .hero-panel {
        padding: 22px;
    }

    .container,
    .nav-inner {
        width: min(100% - 28px, 1180px);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .site-nav {
        position: static;
    }

    .section {
        padding: 72px 0;
    }

    .service-table th,
    .service-table td,
    .portfolio-table th,
    .portfolio-table td {
        padding: 14px 12px;
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .button-primary,
    .button-secondary,
    .submit-button,
    .nav-links a {
        transition: none;
    }
}
