/* ═══════════════════════════════════════════════════════
   GönderGelsin — style.css
   Design Language: Corporate / Financial / Sharp-edged
═══════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────── */
:root {
    --navy:        #0d1f3c;
    --navy-light:  #152b52;
    --navy-mid:    #1e3a6e;
    --gold:        #c8973a;
    --gold-light:  #e0b05a;
    --green:       #2d7a4f;
    --green-light: #3a9e65;
    --bg:          #f5f6f8;
    --bg-white:    #ffffff;
    --bg-section:  #f0f2f5;
    --border:      #d4d8e0;
    --border-dark: #b8bec9;
    --text:        #1a2236;
    --text-mid:    #3d4f6e;
    --text-soft:   #6b7a96;
    --text-xsoft:  #9aa3b5;
    --font: 'IBM Plex Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-heading: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    --mono: 'IBM Plex Mono', 'Courier New', monospace;
    --radius:      0px;
    --transition:  0.18s ease;
    --shadow-sm:   0 1px 4px rgba(13,31,60,0.08);
    --shadow-md:   0 4px 16px rgba(13,31,60,0.12);
    --shadow-lg:   0 8px 32px rgba(13,31,60,0.16);
}

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.hero {
    position: relative;
    background: #fff;
    padding: 30px 0 100px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-grid,
.site-header,
.services,
.value-prop,
.limits,
.integration,
.trust,
.cta-section {
    position: relative;
    z-index: 1;
}

.hero-grid-fade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(13,31,60,0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(13,31,60,0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 85%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 85%);
}

.hero-line {
    position: absolute;
    display: block;
    background: linear-gradient(90deg, transparent, rgba(200,151,58,0.20), transparent);
    height: 1px;
    width: 520px;
}

.hero-line-1 {
    top: 88px;
    right: -80px;
    transform: rotate(-12deg);
}

.hero {
    position: relative;
    background:
        radial-gradient(circle at 18% 28%, rgba(13,31,60,0.05), transparent 34%),
        radial-gradient(circle at 78% 22%, rgba(200,151,58,0.10), transparent 28%),
        linear-gradient(to bottom, #fcfcfb 0%, #f6f7f9 100%);
    padding: 80px 0 100px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-grid-fade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(13,31,60,0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(13,31,60,0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.55;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.60) 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.60) 65%, transparent 100%);
}

.hero-line {
    position: absolute;
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,151,58,0.45), transparent);
    opacity: 0.8;
}

.hero-line-1 {
    width: 680px;
    top: 115px;
    right: -120px;
    transform: rotate(-11deg);
}

.hero-line-2 {
    width: 540px;
    bottom: 85px;
    left: -100px;
    transform: rotate(8deg);
}

/* yeni katman */
.hero-bg::after {
    content: "";
    position: absolute;
    right: 6%;
    top: 16%;
    width: 520px;
    height: 520px;
    background:
        radial-gradient(circle, rgba(13,31,60,0.05) 0%, rgba(13,31,60,0.02) 35%, transparent 72%);
    border: 1px solid rgba(13,31,60,0.06);
    transform: rotate(12deg);
}

.hero-content {
    position: relative;
    padding: 10px 0 24px;
}

.hero-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(13,31,60,0.18), rgba(13,31,60,0.05));
}

.hero {
    position: relative;
    background:
        radial-gradient(circle at 18% 22%, rgba(13,31,60,0.035), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(200,151,58,0.06), transparent 24%),
        linear-gradient(to bottom, #ffffff, #fbfcfd);
    padding: 80px 0 100px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
}

.hero-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

@media (max-width: 1024px) {
    .hero-grid::after {
        display: none;
    }
}

.hero-title,
.section-header h2,
h1, h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.015em;
}

.logo-name {
    font-family: var(--font);
    font-weight: 600;
    letter-spacing: 0;
}

.main-nav a,
.hero-sub,
.section-desc,
.service-card p,
.vp-list p,
.int-content > p,
.trust-card p,
.footer-desc {
    font-family: var(--font);
}

.section-tag,
.badge,
.limit-badge,
.sc-tag,
.tc-number,
.footer-col strong {
    letter-spacing: 0.08em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
pre { overflow-x: auto; }

/* ── Container ──────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography Helpers ─────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200,151,58,0.10);
    border-left: 3px solid var(--gold);
    padding: 4px 10px 4px 8px;
    margin-bottom: 18px;
}

.section-tag.light {
    color: #e0c080;
    background: rgba(200,151,58,0.15);
    border-color: var(--gold-light);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 14px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.65;
}

h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; line-height: 1.2; color: var(--navy); }
h3 { font-size: 18px; font-weight: 600; line-height: 1.35; color: var(--navy); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-ghost:hover {
    background: var(--navy);
    color: #fff;
}

.btn-cta-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    font-size: 16px;
    padding: 16px 32px;
}
.btn-cta-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-cta-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    font-size: 16px;
    padding: 16px 32px;
}
.btn-cta-ghost:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.logo-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
}

.main-nav a:hover { color: var(--navy); }

.main-nav .nav-cta {
    background: var(--navy);
    color: #fff;
    padding: 9px 20px;
    font-weight: 600;
    transition: background var(--transition);
}
.main-nav .nav-cta:hover { background: var(--navy-light); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    width: 40px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--navy);
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 12px 0 20px;
}
.mobile-nav a {
    display: block;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--bg-section); color: var(--navy); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
    background: var(--bg-white);
    padding: 80px 0 100px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 5px 12px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 50px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.accent-text {
    color: var(--gold);
}

.hero-sub {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hero-panel {
    width: 100%;
    max-width: 420px;
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--border);
    padding: 28px 30px;
    position: relative;
}

.hero-panel::before {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    bottom: -1px;
    width: 3px;
    background: var(--gold);
}

.hero-panel-head {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.hero-panel-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-panel-row:last-of-type {
    border-bottom: none;
}

.hero-panel-row span {
    font-size: 14px;
    color: var(--text-soft);
}

.hero-panel-row strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.hero-panel-foot {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
}

.hero-panel {
    backdrop-filter: blur(4px);
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}
.stat:first-child { padding-left: 0; }

.stat-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--mono);
}

.stat-label {
    font-size: 12px;
    color: var(--text-xsoft);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 340px;
}

.visual-card {
    position: absolute;
    background: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 18px 22px;
}

.vc-1 {
    top: 0;
    right: 0;
    width: 240px;
}
.vc-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.vc-amount {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--mono);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.vc-meta {
    font-size: 12px;
    color: var(--text-xsoft);
}

.vc-2 {
    bottom: 60px;
    left: 0;
    width: 210px;
}
.vc-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 10px;
}
.vc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.vc-dot.green { background: var(--green-light); }

.vc-bar {
    height: 4px;
    background: var(--bg-section);
    margin-bottom: 8px;
}
.vc-bar span {
    display: block;
    height: 100%;
    background: var(--green-light);
}
.vc-label-sm {
    font-size: 11px;
    color: var(--text-soft);
}

.vc-3 {
    top: 140px;
    right: 30px;
    width: 180px;
}
.vc-rate {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services {
    padding: 96px 0;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--bg-white);
    padding: 36px 32px;
    position: relative;
    transition: background var(--transition);
}

.service-card:hover { background: #fafbfc; }

.service-card.sc-featured {
    grid-column: 1;
    background: var(--navy);
    color: #fff;
}
.service-card.sc-featured h3 { color: #fff; }
.service-card.sc-featured p { color: rgba(255,255,255,0.70); }
.service-card.sc-featured:hover { background: var(--navy-light); }
.service-card.sc-featured .sc-icon { color: var(--gold); }
.service-card.sc-featured .sc-tag {
    background: rgba(200,151,58,0.15);
    color: var(--gold-light);
    border-color: rgba(200,151,58,0.25);
}

.sc-icon {
    color: var(--navy-mid);
    margin-bottom: 18px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 20px;
}

.sc-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-mid);
    background: var(--bg-section);
    border: 1px solid var(--border);
    padding: 4px 10px;
}

/* ═══════════════════════════════════════════════════════
   VALUE PROPOSITION
═══════════════════════════════════════════════════════ */
.value-prop {
    padding: 96px 0;
    border-bottom: 1px solid var(--border);
}

.vp-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.vp-left h2 { margin-bottom: 16px; }
.vp-left p { font-size: 16px; color: var(--text-soft); line-height: 1.65; margin-bottom: 32px; }

.vp-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
}

.vp-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.vp-list li:last-child { border-bottom: none; }
.vp-list li:hover { background: var(--bg-section); }

.vp-bullet {
    font-size: 11px;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--gold);
    background: rgba(200,151,58,0.10);
    padding: 3px 7px;
    flex-shrink: 0;
    border: 1px solid rgba(200,151,58,0.20);
    margin-top: 2px;
}

.vp-list strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.vp-list p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   LIMITS
═══════════════════════════════════════════════════════ */
.limits {
    padding: 96px 0;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
}

.limits-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto 24px;
}

.limit-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px 36px;
    text-align: center;
}

.limit-card.lc-max {
    background: var(--navy);
    border-left: 1px solid var(--navy-light);
}
.limit-card.lc-max .limit-badge { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.20); }
.limit-card.lc-max .limit-amount { color: #fff; }
.limit-card.lc-max .limit-amount span { color: var(--gold); }
.limit-card.lc-max p { color: rgba(255,255,255,0.55); }

.limit-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
    border: 1px solid var(--border-dark);
    padding: 5px 14px;
    margin-bottom: 20px;
}

.limit-amount {
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 700;
    font-family: var(--mono);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1;
}
.limit-amount span {
    font-size: 0.55em;
    color: var(--gold);
    vertical-align: super;
    margin-left: 2px;
}

.limit-card p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
}

.limit-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    gap: 8px;
    background: var(--bg-section);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    min-width: 60px;
}
.ld-line {
    flex: 1;
    width: 1px;
    background: var(--border-dark);
}
.limit-divider span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-xsoft);
    writing-mode: vertical-rl;
}

.limits-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(200,151,58,0.06);
    border: 1px solid rgba(200,151,58,0.20);
    border-left: 3px solid var(--gold);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.55;
}
.limits-note svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   INTEGRATION
═══════════════════════════════════════════════════════ */
.integration {
    padding: 96px 0;
    border-bottom: 1px solid var(--border);
}

.int-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
}

.code-block {
    background: #0f1923;
    border: 1px solid #1e2d3d;
    box-shadow: var(--shadow-lg);
}

.cb-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid #1e2d3d;
}

.cb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.cb-dot.r { background: #ff5f57; }
.cb-dot.y { background: #febc2e; }
.cb-dot.g { background: #28c840; }

.cb-title {
    font-size: 12px;
    color: #4a5568;
    font-family: var(--mono);
    margin-left: 6px;
}

.cb-code {
    padding: 24px 20px;
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.75;
    color: #8ba0b5;
    white-space: pre;
}

.c-keyword { color: #5eadf2; font-weight: 600; }
.c-key { color: #c792ea; }
.c-val { color: #c3e88d; }
.c-comment { color: #4a5568; }
.c-green { color: #28c840; }

.int-content h2 { margin-bottom: 16px; }
.int-content > p {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 28px;
}

.int-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.int-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-mid);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.int-list li:last-child { border-bottom: none; }
.int-list svg { flex-shrink: 0; color: var(--green); margin-top: 3px; }

/* ═══════════════════════════════════════════════════════
   TRUST
═══════════════════════════════════════════════════════ */
.trust {
    padding: 96px 0;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 72px;
    align-items: start;
}

.trust-headline h2 { margin-top: 12px; }

.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.trust-card {
    background: var(--bg-white);
    padding: 30px 26px;
    transition: background var(--transition);
}
.trust-card:hover { background: var(--navy); }
.trust-card:hover .tc-number { color: var(--gold); }
.trust-card:hover h3, .trust-card:hover p { color: rgba(255,255,255,0.85); }

.tc-number {
    font-size: 12px;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.trust-card h3 { margin-bottom: 10px; font-size: 16px; }
.trust-card p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════ */
.cta-section {
    background: var(--navy);
    padding: 96px 0;
    border-bottom: 4px solid var(--gold);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 14px;
    font-size: clamp(28px, 4vw, 42px);
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    line-height: 1.65;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.10); }
.footer-brand .logo-name { color: #fff; }
.footer-desc { font-size: 14px; max-width: 220px; line-height: 1.6; }

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.90); }

.footer-bottom {
    padding: 18px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom span {
    font-size: 13px;
    color: rgba(255,255,255,0.30);
}

.footer-domain {
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(200,151,58,0.50) !important;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero { padding: 64px 0 80px; }
    .int-inner { grid-template-columns: 1fr; }
    .int-visual { order: 2; }
    .trust-grid { grid-template-columns: 1fr; gap: 40px; }
    .trust-cards { grid-template-columns: 1fr 1fr; }
    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
    .vp-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .mobile-nav.open { display: flex; }
    .mobile-nav:not(.open) { display: none; }

    .hero { padding: 48px 0 64px; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .stat-divider { display: none; }
    .stat { padding: 0; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card.sc-featured { grid-column: 1; }

    .limits-grid {
        flex-direction: column;
        max-width: 380px;
    }
    .limit-divider {
        flex-direction: row;
        min-width: unset;
        min-height: 44px;
        writing-mode: unset;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        border-left: none;
        border-right: none;
    }
    .limit-divider span { writing-mode: horizontal-tb; }
    .ld-line { width: auto; height: 1px; flex: 1; }

    .trust-cards { grid-template-columns: 1fr; }

    .cta-actions { flex-direction: row; flex-wrap: wrap; }
    .btn-cta-primary, .btn-cta-ghost { flex: 1; justify-content: center; }

    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }

    .section-header { margin-bottom: 40px; }
    .services, .value-prop, .limits, .integration, .trust, .cta-section { padding: 64px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .footer-links { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; }
    .btn-cta-primary, .btn-cta-ghost { width: 100%; justify-content: center; }
}

/* ── Accessibility ──────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}

