/* =========================================================
   CRONOTICS - FINAL UPDATED STYLESHEET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --white: #ffffff;
    --bg: #f7f9fc;
    --bg-soft: #f4f7fb;
    --bg-warm: #fff9ef;
    --text: #0d1526;
    --text-soft: #374151;
    --muted: #667085;
    --line: #e6edf5;
    --line-strong: #d7e0ea;
    --primary: #1971d4;
    --primary-dark: #1158a6;
    --accent: #f5a300;
    --danger: #dc2626;

    --shadow-xs: 0 2px 10px rgba(16, 24, 40, 0.04);
    --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 24px 60px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.12);

    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --container: 1280px;
    --header-h: 84px;
    --transition: 0.28s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.section-tight {
    padding: 70px 0;
}

.bg-soft,
.soft-panel-section {
    background: var(--bg-soft);
}

.bg-warm {
    background: var(--bg-warm);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    font-weight: 800;
}

.section-heading,
.center-heading {
    margin-bottom: 34px;
}

.center-heading {
    max-width: 860px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.two-col-statement h2,
.feature-slab-copy h2,
.final-cta-box h2,
.page-banner h1,
.footer-cta h3,
.founder-copy h2,
.contact-form-card h2,
.founder-message-card h2,
.founder-statement-card h2 {
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.section-heading p,
.two-col-statement p,
.feature-slab-copy p,
.final-cta-box p,
.page-banner p,
.footer-brand p,
.footer-cta p,
.founder-copy p {
    color: var(--muted);
}

.two-col-statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.two-col-statement p + p {
    margin-top: 16px;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(230, 237, 245, 0.8);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-xs);
    background: rgba(255, 255, 255, 0.96);
}

.nav-wrap {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.brand-logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-menu a {
    position: relative;
    color: var(--text-soft);
    font-size: 0.96rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 0 0 auto;
}

.menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: var(--transition);
}

.menu-toggle span:first-child {
    transform: translateY(-5px);
}

.menu-toggle span:last-child {
    transform: translateY(5px);
}

.menu-toggle.is-active span:first-child {
    transform: rotate(45deg);
}

.menu-toggle.is-active span:last-child {
    transform: rotate(-45deg);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 12px 26px rgba(25, 113, 212, 0.18);
}

.btn-outline {
    color: var(--text);
    background: var(--white);
    border-color: var(--line-strong);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f8fbff;
}

.btn-light {
    background: var(--white);
    color: var(--text);
}

/* =========================================================
   HERO
   ========================================================= */

.hero-home-main {
    position: relative;
    padding: 110px 0 70px;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    overflow: hidden;
    --hero-shift: 0px;
}

.hero-home-main::before {
    content: "";
    position: absolute;
    right: -120px;
    top: 40px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(25, 113, 212, 0.10), transparent 68%);
    filter: blur(8px);
    transform: translateY(var(--hero-shift));
    pointer-events: none;
}

.hero-home-main::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: 20px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245, 163, 0, 0.10), transparent 68%);
    filter: blur(10px);
    transform: translateY(calc(var(--hero-shift) * -0.5));
    pointer-events: none;
}

.hero-grid-lg {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 52px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
    color: #0b1220;
}

.hero-lead {
    max-width: 740px;
    font-size: 1.08rem;
    color: #5f6b7a;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-mini-stats {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-stat {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-xs);
}

.hero-stat strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.hero-stat span {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
}

.hero-showcase {
    position: relative;
    min-height: 560px;
}

.hero-showcase-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.hero-showcase-card.large {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px;
}

.hero-showcase-card.large img {
    width: 100%;
    max-width: 360px;
    object-fit: contain;
}

.hero-showcase-card.small {
    position: absolute;
    right: -20px;
    width: 260px;
    padding: 24px;
    z-index: 2;
}

.hero-showcase-card.small.top {
    top: 32px;
}

.hero-showcase-card.small.bottom {
    bottom: 32px;
}

.hero-showcase-card.small h4 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.hero-showcase-card.small p {
    font-size: 0.95rem;
    color: var(--muted);
}

.trust-bar {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-bar-inner span {
    font-size: 0.82rem;
    font-weight: 800;
    color: #4b5563;
    letter-spacing: 0.12em;
}

/* =========================================================
   GENERIC CARDS / GRIDS
   ========================================================= */

.capability-grid,
.card-grid {
    display: grid;
    gap: 24px;
}

.four-grid,
.card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
    grid-template-columns: repeat(2, 1fr);
}

.cap-card,
.text-only,
.metric-item,
.why-box,
.contact-form-wrap,
.metric-pill,
.testimonial-card,
.home-work-card,
.founder-card,
.contact-side-card,
.contact-side-panel,
.contact-highlight-box,
.contact-support-card,
.process-step,
.team-hero-panel,
.team-flagship-card,
.blog-category-card,
.blog-card,
.blog-feature-main,
.blog-feature-side,
.pricing-card,
.portfolio-card-elite,
.portfolio-feature-card,
.status-info-card,
.maintenance-card,
.countdown-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.cap-card:hover,
.text-only:hover,
.metric-item:hover,
.why-box:hover,
.contact-form-wrap:hover,
.metric-pill:hover,
.testimonial-card:hover,
.home-work-card:hover,
.founder-card:hover,
.contact-side-card:hover,
.contact-highlight-box:hover,
.contact-support-card:hover,
.process-step:hover,
.team-flagship-card:hover,
.blog-category-card:hover,
.blog-card:hover,
.blog-feature-main:hover,
.blog-feature-side:hover,
.portfolio-card-elite:hover,
.portfolio-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
}

.cap-card,
.text-only,
.metric-item,
.why-box,
.contact-form-wrap,
.metric-pill,
.testimonial-card,
.founder-card,
.contact-side-card,
.contact-side-panel,
.contact-highlight-box,
.contact-support-card,
.process-step,
.team-hero-panel,
.blog-category-card,
.blog-card {
    padding: 24px;
}

.cap-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-weight: 800;
}

.cap-card h3,
.text-only h3,
.why-box h3,
.metric-item h3,
.home-work-body h3,
.blog-card h3,
.blog-category-card h3,
.process-step h3,
.contact-side-card h3,
.contact-support-card h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
}

.cap-card p,
.text-only p,
.why-box p,
.metric-item p,
.home-work-body p,
.blog-card p,
.blog-category-card p,
.process-step p,
.contact-side-card p,
.contact-support-card p {
    color: var(--muted);
}

/* =========================================================
   FEATURE SECTION
   ========================================================= */

.feature-slab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.feature-slab-image img {
    width: 100%;
    min-height: 560px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.feature-list-clean {
    margin: 28px 0 30px;
    display: grid;
    gap: 18px;
}

.feature-list-item {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.feature-list-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.feature-list-item h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.feature-list-item p {
    color: var(--muted);
}

/* =========================================================
   HOME WORK / WHY / TESTIMONIALS / FOUNDER
   ========================================================= */

.metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.metric-pill strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text);
}

.metric-pill span {
    color: var(--muted);
    font-size: 0.94rem;
}

.home-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.home-work-card {
    overflow: hidden;
}

.home-work-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.home-work-body {
    padding: 18px;
}

.home-work-body span {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 700;
}

.home-work-body a {
    position: relative;
    font-weight: 700;
    color: var(--primary);
}

.home-work-body a::after,
.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: var(--transition);
}

.home-work-body a:hover::after,
.text-link:hover::after {
    width: 100%;
}

.center-btn {
    text-align: center;
    margin-top: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: rgba(25, 113, 212, 0.22);
    margin-bottom: 10px;
    font-weight: 800;
}

.testimonial-card p {
    color: var(--text-soft);
    margin-bottom: 18px;
}

.testimonial-meta strong {
    display: block;
    color: var(--text);
    font-size: 0.96rem;
}

.testimonial-meta span {
    color: var(--muted);
    font-size: 0.9rem;
}

.founder-block {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

.founder-card strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.founder-card span {
    color: var(--muted);
}

/* =========================================================
   PAGE BANNER
   ========================================================= */

.page-banner {
    padding: 110px 0 90px;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--line);
}

.page-banner h1 {
    max-width: 920px;
}

.page-banner p {
    max-width: 780px;
    font-size: 1.06rem;
}

/* =========================================================
   PRICING
   ========================================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.pricing-card.featured {
    border: 1px solid rgba(25, 113, 212, 0.35);
    box-shadow: 0 20px 60px rgba(25, 113, 212, 0.15);
    transform: scale(1.03);
}

.pricing-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.pricing-head {
    margin-bottom: 20px;
}

.pricing-head h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.pricing-head h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.pricing-head p {
    color: var(--muted);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin: 20px 0 30px;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-soft);
    position: relative;
    padding-left: 18px;
}

.pricing-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.pricing-footer {
    margin-top: auto;
}

.mini-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-card.featured .mini-tag {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
}

.currency-toggle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.currency-toggle {
    display: inline-flex;
    padding: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow-xs);
    gap: 6px;
}

.currency-toggle button {
    border: 0;
    background: transparent;
    color: var(--text-soft);
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.currency-toggle button.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.currency-note {
    font-size: 0.92rem;
    color: var(--muted);
    text-align: center;
}

.quote-modal {
    position: fixed;
    inset: 0;
    background: rgba(13, 21, 38, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

.quote-modal.show {
    display: flex;
}

.quote-box {
    width: min(100%, 760px);
    background: var(--white);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.22);
    position: relative;
}

.quote-box h3 {
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.quote-subtext {
    color: var(--muted);
    margin-bottom: 20px;
}

.quote-close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fbfdff;
    border-radius: 16px;
    padding: 16px 18px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: rgba(25, 113, 212, 0.45);
    box-shadow: 0 0 0 4px rgba(25, 113, 212, 0.08);
    background: var(--white);
}

/* =========================================================
   PORTFOLIO
   ========================================================= */

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.portfolio-filter button {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--text-soft);
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.portfolio-filter button:hover,
.portfolio-filter button.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
}

.portfolio-stack {
    display: grid;
    gap: 28px;
}

.portfolio-feature-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    overflow: hidden;
}

.portfolio-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
}

.portfolio-feature-body {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-lead {
    font-size: 1.04rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.portfolio-lead-small {
    color: var(--muted);
    margin-bottom: 14px;
}

.portfolio-details-grid {
    display: grid;
    gap: 14px;
    margin: 16px 0 24px;
}

.portfolio-grid-elite {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.portfolio-card-elite {
    overflow: hidden;
}

.portfolio-card-elite img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.portfolio-card-elite-body {
    padding: 24px;
}

.portfolio-details {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.portfolio-details strong,
.portfolio-details-grid strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 4px;
    color: var(--text);
}

.portfolio-details p,
.portfolio-details-grid p {
    font-size: 0.93rem;
    color: var(--muted);
}

.portfolio-item.is-hidden {
    display: none !important;
}

/* =========================================================
   TEAM
   ========================================================= */

.team-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.team-dna-list {
    display: grid;
    gap: 16px;
    margin-top: 14px;
}

.team-dna-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.team-dna-item p {
    color: var(--muted);
}

.team-grid-flagship {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.team-flagship-card {
    overflow: hidden;
}

.team-image-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.team-flagship-body {
    padding: 24px;
}

.team-position,
.team-role {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.team-strength-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.team-strength-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.92rem;
}

.team-strength-list span {
    color: var(--muted);
    font-size: 0.93rem;
}

.founder-message-wrap,
.founder-statement-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.founder-message-card,
.founder-statement-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.founder-message-card p,
.founder-statement-card p {
    color: var(--muted);
    max-width: 820px;
}

.founder-message-sign,
.founder-signature {
    margin-top: 22px;
}

.founder-message-sign strong,
.founder-signature strong {
    display: block;
    font-size: 1rem;
}

.founder-message-sign span,
.founder-signature span {
    color: var(--muted);
}

/* =========================================================
   BLOG
   ========================================================= */

.blog-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.blog-feature-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.blog-feature-main {
    overflow: hidden;
    padding: 0;
}

.blog-feature-main img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.blog-feature-content,
.blog-feature-body {
    padding: 24px;
}

.blog-feature-content h3,
.blog-feature-body h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.blog-feature-content p,
.blog-feature-body p {
    color: var(--muted);
}

.blog-feature-side {
    display: grid;
    gap: 18px;
    padding: 18px;
}

.blog-feature-side img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
}

.blog-feature-side h4 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.blog-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.blog-category-card {
    text-align: center;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    align-items: stretch;
}

.blog-card {
    padding: 24px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-flash {
    max-width: 1280px;
    margin: 24px auto 0;
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 600;
    border: 1px solid transparent;
}

.contact-flash.success {
    background: #ecfdf3;
    color: #166534;
    border-color: #bbf7d0;
}

.contact-flash.error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.contact-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.contact-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.contact-highlight-box strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.contact-highlight-box span {
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-side-panel {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.contact-side-panel h3 {
    margin-bottom: 14px;
}

.contact-detail-list {
    display: grid;
    gap: 16px;
    margin-top: 12px;
}

.contact-detail-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-detail-item p {
    color: var(--muted);
}

.contact-side-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.contact-side-note h4 {
    margin-bottom: 8px;
}

.contact-side-note p {
    color: var(--muted);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.contact-form-lead {
    color: var(--muted);
    margin-bottom: 24px;
}

.contact-form-elite {
    display: grid;
    gap: 16px;
}

.contact-form-row {
    display: grid;
    gap: 16px;
}

.contact-form-row.two {
    grid-template-columns: repeat(2, 1fr);
}

.contact-form-row.one {
    grid-template-columns: 1fr;
}

.input-group {
    display: grid;
    gap: 8px;
}

.input-group label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fbfdff;
    border-radius: 16px;
    padding: 15px 16px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: rgba(25, 113, 212, 0.45);
    box-shadow: 0 0 0 4px rgba(25, 113, 212, 0.08);
    background: var(--white);
}

.contact-submit-wrap {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-submit-wrap p {
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-support-stack {
    display: grid;
    gap: 18px;
}

.contact-step-list {
    display: grid;
    gap: 16px;
}

.contact-step-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
}

.contact-step-item strong {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 0.95rem;
}

.contact-step-item h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-step-item p {
    color: var(--muted);
    font-size: 0.94rem;
}

.contact-bullet-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.contact-bullet-list li {
    color: var(--text-soft);
    padding-left: 18px;
    position: relative;
}

.contact-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.contact-mini-faq {
    display: grid;
    gap: 14px;
}

.contact-mini-faq strong {
    display: block;
    margin-bottom: 4px;
}

.contact-mini-faq p {
    color: var(--muted);
    font-size: 0.94rem;
}

/* =========================================================
   PROCESS / LEGAL
   ========================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-step strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 0.92rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h2 {
    margin-bottom: 16px;
    font-size: 2rem;
}

.legal-page h3 {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.legal-page p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 18px;
    margin-bottom: 12px;
}

.legal-page ul li {
    margin-bottom: 6px;
    color: var(--muted);
}

/* =========================================================
   STATUS / MAINTENANCE / COMING SOON
   ========================================================= */

.status-page {
    position: relative;
    min-height: calc(100vh - 160px);
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(25,113,212,0.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(245,163,0,0.10), transparent 35%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.status-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.status-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.9;
    animation: floatOrb 9s ease-in-out infinite;
}

.status-bg-orb.orb-one {
    width: 320px;
    height: 320px;
    top: 80px;
    left: -60px;
    background: rgba(25,113,212,0.15);
}

.status-bg-orb.orb-two {
    width: 280px;
    height: 280px;
    right: -40px;
    bottom: 40px;
    background: rgba(245,163,0,0.14);
    animation-delay: 1.2s;
}

.status-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13,21,38,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,21,38,0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
    pointer-events: none;
}

.status-copy h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.status-copy p {
    max-width: 700px;
    font-size: 1.05rem;
    color: var(--muted);
}

.status-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-core-graphic,
.launch-graphic {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-ring,
.launch-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(25,113,212,0.16);
    animation: spinSlow 18s linear infinite;
}

.core-ring.ring-a,
.launch-orbit.orbit-a {
    width: 220px;
    height: 220px;
}

.core-ring.ring-b,
.launch-orbit.orbit-b {
    width: 300px;
    height: 300px;
    animation-direction: reverse;
    animation-duration: 22s;
}

.core-ring.ring-c,
.launch-orbit.orbit-c {
    width: 380px;
    height: 380px;
    animation-duration: 28s;
}

.core-center,
.launch-core {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 20px 50px rgba(25,113,212,0.28);
    position: relative;
    z-index: 4;
}

.floating-chip {
    position: absolute;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(230,237,245,0.9);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    animation: chipFloat 5s ease-in-out infinite;
}

.chip-one { top: 42px; right: 38px; }
.chip-two { bottom: 58px; left: 10px; animation-delay: .8s; }
.chip-three { left: 55px; top: 78px; animation-delay: 1.5s; }

.launch-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ffd369);
    box-shadow: 0 0 18px rgba(245,163,0,0.5);
    z-index: 3;
}

.dot-a {
    top: 32px;
    left: 200px;
    animation: orbitDotA 10s linear infinite;
}

.dot-b {
    right: 70px;
    bottom: 120px;
    animation: orbitDotB 12s linear infinite;
}

.dot-c {
    left: 80px;
    bottom: 70px;
    animation: orbitDotC 14s linear infinite;
}

.status-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.status-info-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.76);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(230,237,245,0.9);
    box-shadow: var(--shadow-xs);
}

.status-info-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
}

.status-info-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

.maintenance-page,
.coming-soon-page {
    padding: 120px 0;
    min-height: calc(100vh - 160px);
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.maintenance-wrap,
.coming-soon-wrap {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.maintenance-wrap h1,
.coming-soon-wrap h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.maintenance-wrap p,
.coming-soon-wrap p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
}

.maintenance-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.maintenance-card {
    padding: 22px;
}

.maintenance-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
}

.maintenance-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.countdown-box {
    position: relative;
    padding: 26px 18px;
    border-radius: 26px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(230,237,245,0.9);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.countdown-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25,113,212,0.05), rgba(245,163,0,0.05));
    pointer-events: none;
}

.countdown-box strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    margin-bottom: 10px;
    color: var(--primary);
    animation: pulseNumber 1.8s ease-in-out infinite;
}

.countdown-box span {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-weight: 700;
}

.coming-soon-note,
.status-launch-note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.98rem;
}

/* =========================================================
   CTA / FOOTER / FLOATING CTA
   ========================================================= */

.metrics-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.metric-item {
    text-align: center;
}

.metric-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

.final-cta-box {
    padding: 46px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    box-shadow: var(--shadow-md);
}

.final-cta-box .eyebrow,
.final-cta-box h2,
.final-cta-box p {
    color: var(--white);
}

.site-footer {
    margin-top: 90px;
    border-top: 1px solid var(--line);
    background: #fbfcfe;
}

.footer-cta {
    margin: 14px 0 28px;
    padding: 28px 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, #1d73d8, #145fc1);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
}

.footer-cta .eyebrow,
.footer-cta h3,
.footer-cta p {
    color: var(--white);
}

.footer-top {
    padding: 68px 0 36px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
}

.footer-logo img {
    height: 38px;
    width: auto;
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--muted);
    margin-bottom: 16px;
    max-width: 460px;
}

.footer-contact {
    display: grid;
    gap: 8px;
}

.footer-contact p {
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-links-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer-links h4 {
    font-size: 0.96rem;
    margin-bottom: 14px;
    color: var(--text);
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 22px 0 30px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.94rem;
}

.floating-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(25, 113, 212, 0.24);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.floating-cta.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-cta:hover {
    box-shadow: 0 24px 46px rgba(25, 113, 212, 0.30);
}

/* =========================================================
   REVEAL / ANIMATIONS
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-18px) translateX(8px); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseNumber {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes orbitDotA {
    0% { transform: rotate(0deg) translateX(0); }
    50% { transform: translateY(-10px); }
    100% { transform: rotate(360deg) translateX(0); }
}

@keyframes orbitDotB {
    0% { transform: translateY(0); }
    50% { transform: translateY(14px); }
    100% { transform: translateY(0); }
}

@keyframes orbitDotC {
    0% { transform: translateX(0); }
    50% { transform: translateX(12px); }
    100% { transform: translateX(0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
    .hero-grid-lg,
    .two-col-statement,
    .feature-slab-grid,
    .footer-top,
    .founder-block,
    .contact-intro-grid,
    .contact-main-grid,
    .team-hero-grid,
    .process-grid,
    .blog-intro-grid,
    .blog-feature-grid,
    .status-wrap,
    .portfolio-feature-card {
        grid-template-columns: 1fr;
    }

    .four-grid,
    .why-grid,
    .metrics-wrap,
    .card-grid.four,
    .metrics-strip,
    .testimonial-grid,
    .home-work-grid,
    .pricing-grid,
    .blog-category-grid,
    .team-grid-flagship,
    .portfolio-grid-elite,
    .status-info-grid,
    .countdown-grid,
    .maintenance-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-feature-media img {
        min-height: 360px;
    }
}

@media (max-width: 920px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(var(--header-h) + 10px);
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 18px;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        z-index: 1001;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 10px 0;
        font-size: 1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .card-grid.two,
    .card-grid.three,
    .card-grid.four,
    .hero-mini-stats,
    .why-grid,
    .metrics-wrap,
    .footer-links-wrap,
    .metrics-strip,
    .testimonial-grid,
    .home-work-grid,
    .pricing-grid,
    .portfolio-grid-elite,
    .blog-category-grid,
    .blog-list-grid,
    .team-grid-flagship,
    .status-info-grid,
    .countdown-grid,
    .maintenance-cards,
    .contact-highlight-grid,
    .contact-form-row.two {
        grid-template-columns: 1fr;
    }

    .hero-showcase-card.small {
        position: static;
        width: 100%;
        margin-top: 16px;
        right: auto;
    }

    .final-cta-box,
    .footer-cta,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-visual {
        order: -1;
    }
}

@media (max-width: 700px) {
    .status-core-graphic,
    .launch-graphic {
        width: 300px;
        height: 300px;
    }

    .core-ring.ring-a,
    .launch-orbit.orbit-a {
        width: 160px;
        height: 160px;
    }

    .core-ring.ring-b,
    .launch-orbit.orbit-b {
        width: 220px;
        height: 220px;
    }

    .core-ring.ring-c,
    .launch-orbit.orbit-c {
        width: 280px;
        height: 280px;
    }

    .core-center,
    .launch-core {
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }

    .floating-chip {
        font-size: 0.78rem;
        padding: 8px 12px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 86px 0;
    }

    .hero-home-main {
        padding: 84px 0 54px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .pricing-card.featured {
        transform: none;
    }

    .final-cta-box,
    .footer-cta,
    .cap-card,
    .text-only,
    .metric-item,
    .why-box,
    .home-work-body,
    .testimonial-card,
    .metric-pill,
    .founder-card,
    .contact-form-wrap,
    .contact-form-card,
    .contact-side-panel,
    .contact-support-card,
    .contact-side-card,
    .process-step,
    .team-hero-panel,
    .team-flagship-body,
    .blog-feature-content,
    .blog-feature-side,
    .blog-card,
    .portfolio-card-elite-body,
    .portfolio-feature-body,
    .quote-box,
    .founder-message-card,
    .founder-statement-card {
        padding-left: 22px;
        padding-right: 22px;
    }

    .footer-links-wrap {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        text-align: center;
    }

    .floating-cta {
        right: 16px;
        left: 16px;
        bottom: 16px;
    }
}
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.footer-socials a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: 0.35s ease;
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: var(--text);
    position: relative;
    z-index: 2;
    transition: 0.3s ease;
}

.footer-socials a:hover::before {
    opacity: 1;
}

.footer-socials a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 40px rgba(25, 113, 212, 0.25);
    border-color: transparent;
}

.footer-socials a:hover svg {
    fill: #fff;
}
.contact-grid-flagship {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fbfdff;
    border-radius: 16px;
    padding: 15px 16px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(25, 113, 212, 0.45);
    box-shadow: 0 0 0 4px rgba(25, 113, 212, 0.08);
    background: var(--white);
}

.full-btn {
    width: 100%;
}

.contact-info-block {
    margin-bottom: 18px;
}

.contact-item {
    margin-top: 16px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.contact-item p {
    color: var(--muted);
}

.mt {
    margin-top: 18px;
    display: inline-block;
}

@media (max-width: 1180px) {
    .contact-grid-flagship {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
.thank-you-wrap {
    display: flex;
    justify-content: center;
}

.thank-you-card {
    max-width: 720px;
    text-align: center;
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(0,0,0,0.05);
}

.thank-you-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thank-you-lead {
    font-size: 1.1rem;
    margin: 15px 0;
}

.thank-you-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}

.thank-you-info div {
    text-align: center;
}

.thank-you-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
}

.thank-you-info span {
    font-weight: 600;
}
.thank-you-elite {
    position: relative;
    min-height: calc(100vh - 160px);
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(25,113,212,0.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(245,163,0,0.10), transparent 35%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.thank-you-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.9;
    animation: thankYouFloat 8s ease-in-out infinite;
}

.thank-you-orb.orb-a {
    width: 300px;
    height: 300px;
    top: 70px;
    left: -50px;
    background: rgba(25,113,212,0.14);
}

.thank-you-orb.orb-b {
    width: 260px;
    height: 260px;
    right: -30px;
    bottom: 30px;
    background: rgba(245,163,0,0.14);
    animation-delay: 1.2s;
}

.thank-you-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13,21,38,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,21,38,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
    pointer-events: none;
}

.thank-you-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.thank-you-card {
    width: min(100%, 760px);
    text-align: center;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 54px 42px;
    border: 1px solid rgba(230,237,245,0.95);
    box-shadow: 0 30px 80px rgba(15,23,42,0.08);
}

.thank-you-animate {
    animation: thankYouEnter 0.9s cubic-bezier(.2,.8,.2,1);
}

.success-badge-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(25,113,212,0.18);
    animation: spinSlow 14s linear infinite;
}

.success-ring.ring-1 {
    width: 118px;
    height: 118px;
}

.success-ring.ring-2 {
    width: 148px;
    height: 148px;
    animation-direction: reverse;
    animation-duration: 18s;
}

.success-badge {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(25,113,212,0.24);
    position: relative;
    z-index: 2;
}

.success-check {
    width: 52px;
    height: 52px;
}

.success-check-circle {
    stroke: rgba(255,255,255,0.25);
    stroke-width: 2;
}

.success-check-path {
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.9s ease forwards 0.35s;
}

.thank-you-card h1 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.thank-you-lead {
    font-size: 1.08rem;
    margin: 14px 0 10px;
    color: var(--text);
}

.thank-you-copy {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 28px 0 18px;
}

.thank-you-info-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(230,237,245,0.95);
    box-shadow: var(--shadow-xs);
}

.thank-you-info-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.92rem;
}

.thank-you-info-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

.thank-you-mini-note {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.96rem;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes thankYouEnter {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes thankYouFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-14px) translateX(8px);
    }
}

@media (max-width: 700px) {
    .thank-you-card {
        padding: 42px 24px;
    }

    .thank-you-info {
        grid-template-columns: 1fr;
    }

    .success-badge-wrap {
        width: 120px;
        height: 120px;
    }

    .success-ring.ring-1 {
        width: 92px;
        height: 92px;
    }

    .success-ring.ring-2 {
        width: 120px;
        height: 120px;
    }

    .success-badge {
        width: 76px;
        height: 76px;
    }
}
.thank-you-elite {
    position: relative;
    min-height: calc(100vh - 160px);
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(25,113,212,0.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(245,163,0,0.10), transparent 35%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.thank-you-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.9;
    animation: thankYouFloat 8s ease-in-out infinite;
}

.thank-you-orb.orb-a {
    width: 300px;
    height: 300px;
    top: 70px;
    left: -50px;
    background: rgba(25,113,212,0.14);
}

.thank-you-orb.orb-b {
    width: 260px;
    height: 260px;
    right: -30px;
    bottom: 30px;
    background: rgba(245,163,0,0.14);
    animation-delay: 1.2s;
}

.thank-you-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13,21,38,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,21,38,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
    pointer-events: none;
}

.thank-you-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.thank-you-card {
    width: min(100%, 820px);
    text-align: center;
    background: rgba(255,255,255,0.84);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 56px 42px;
    border: 1px solid rgba(230,237,245,0.95);
    box-shadow: 0 30px 80px rgba(15,23,42,0.08);
}

.thank-you-animate {
    animation: thankYouEnter 0.9s cubic-bezier(.2,.8,.2,1);
}

.success-badge-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(25,113,212,0.18);
    animation: spinSlow 14s linear infinite;
}

.success-ring.ring-1 {
    width: 118px;
    height: 118px;
}

.success-ring.ring-2 {
    width: 148px;
    height: 148px;
    animation-direction: reverse;
    animation-duration: 18s;
}

.success-badge {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(25,113,212,0.24);
    position: relative;
    z-index: 2;
}

.success-check {
    width: 52px;
    height: 52px;
}

.success-check-circle {
    stroke: rgba(255,255,255,0.25);
    stroke-width: 2;
}

.success-check-path {
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.9s ease forwards 0.35s;
}

.thank-you-card h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.thank-you-lead {
    font-size: 1.08rem;
    margin: 14px 0 10px;
    color: var(--text);
}

.thank-you-copy {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 28px 0 18px;
}

.thank-you-info-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(230,237,245,0.95);
    box-shadow: var(--shadow-xs);
}

.thank-you-info-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.92rem;
}

.thank-you-info-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

.thank-you-mini-note {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.96rem;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes thankYouEnter {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes thankYouFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-14px) translateX(8px);
    }
}

@media (max-width: 700px) {
    .thank-you-card {
        padding: 42px 24px;
    }

    .thank-you-info {
        grid-template-columns: 1fr;
    }

    .success-badge-wrap {
        width: 120px;
        height: 120px;
    }

    .success-ring.ring-1 {
        width: 92px;
        height: 92px;
    }

    .success-ring.ring-2 {
        width: 120px;
        height: 120px;
    }

    .success-badge {
        width: 76px;
        height: 76px;
    }
}
.thank-you-premium {
    position: relative;
    min-height: calc(100vh - 160px);
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(25,113,212,0.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(245,163,0,0.10), transparent 35%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.thank-you-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.9;
    animation: thankYouOrbFloat 10s ease-in-out infinite;
}

.thank-you-bg-orb.orb-one {
    width: 320px;
    height: 320px;
    top: 70px;
    left: -60px;
    background: rgba(25,113,212,0.15);
}

.thank-you-bg-orb.orb-two {
    width: 280px;
    height: 280px;
    right: -50px;
    top: 120px;
    background: rgba(245,163,0,0.14);
    animation-delay: 1.2s;
}

.thank-you-bg-orb.orb-three {
    width: 240px;
    height: 240px;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    background: rgba(25,113,212,0.08);
    animation-delay: 2s;
}

.thank-you-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13,21,38,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,21,38,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
    pointer-events: none;
}

.thank-you-premium-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.thank-you-premium-card {
    width: min(100%, 860px);
    text-align: center;
    background: rgba(255,255,255,0.84);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(230,237,245,0.95);
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(15,23,42,0.08);
    padding: 56px 42px;
    animation: thankYouCardEnter 0.9s cubic-bezier(.2,.8,.2,1);
}

.thank-you-badge-wrap {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(25,113,212,0.18);
    animation: spinSlow 14s linear infinite;
}

.thank-you-ring.ring-one {
    width: 110px;
    height: 110px;
}

.thank-you-ring.ring-two {
    width: 140px;
    height: 140px;
    animation-direction: reverse;
    animation-duration: 18s;
}

.thank-you-ring.ring-three {
    width: 170px;
    height: 170px;
    animation-duration: 24s;
}

.thank-you-badge {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(25,113,212,0.24);
    position: relative;
    z-index: 2;
    animation: thankYouPulse 2.4s ease-in-out infinite;
}

.thank-you-check {
    width: 54px;
    height: 54px;
}

.thank-you-check-circle {
    stroke: rgba(255,255,255,0.24);
    stroke-width: 2;
}

.thank-you-check-path {
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.9s ease forwards 0.35s;
}

.thank-you-premium-card h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.thank-you-premium-lead {
    font-size: 1.08rem;
    margin: 14px 0 10px;
    color: var(--text);
}

.thank-you-premium-copy {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
}

.thank-you-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 30px 0 24px;
}

.thank-you-meta-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(230,237,245,0.95);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.thank-you-meta-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.thank-you-meta-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.92rem;
}

.thank-you-meta-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

.thank-you-countdown-wrap {
    margin-bottom: 26px;
}

.thank-you-countdown-circle {
    width: 110px;
    height: 110px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    animation: thankYouPulse 2s ease-in-out infinite;
}

.thank-you-countdown-circle strong {
    font-size: 2rem;
    line-height: 1;
    color: var(--primary);
}

.thank-you-countdown-circle span {
    font-size: 0.82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.thank-you-countdown-wrap p {
    color: var(--muted);
    font-size: 0.96rem;
}

@keyframes thankYouCardEnter {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes thankYouOrbFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-16px) translateX(10px);
    }
}

@keyframes thankYouPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 700px) {
    .thank-you-premium-card {
        padding: 42px 24px;
    }

    .thank-you-meta-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-badge-wrap {
        width: 130px;
        height: 130px;
    }

    .thank-you-ring.ring-one {
        width: 90px;
        height: 90px;
    }

    .thank-you-ring.ring-two {
        width: 110px;
        height: 110px;
    }

    .thank-you-ring.ring-three {
        width: 130px;
        height: 130px;
    }

    .thank-you-badge {
        width: 76px;
        height: 76px;
    }

    .thank-you-countdown-circle {
        width: 96px;
        height: 96px;
    }
}