/* ============================================
   Iron Claw Tech — Dark Theme Stylesheet
   ============================================ */

:root {
    --bg: #07080b;
    --bg-elev: #0d0f14;
    --bg-elev-2: #12151c;
    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.1);
    --text: #e8eaee;
    --text-dim: #9da3ad;
    --text-mute: #6b7280;

    --accent: #2dd4bf;
    --accent-2: #0d9488;
    --accent-glow: rgba(45, 212, 191, 0.4);

    --success: #4ade80;
    --warning: #facc15;

    --grad: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
    --grad-soft: linear-gradient(135deg, rgba(45, 212, 191, 0.15) 0%, rgba(13, 148, 136, 0.05) 100%);

    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;

    --shadow-glow: 0 0 60px rgba(45, 212, 191, 0.15);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --container: 1240px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Keyboard focus visibility */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Background grid + glow */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center top, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Typography & Buttons
   ============================================ */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-sm { padding: 10px 20px; font-size: 14px; }

.btn-primary {
    background: linear-gradient(135deg, #115e59 0%, #134e4a 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: var(--border-strong);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ============================================
   Header
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: rgba(7, 8, 11, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(7, 8, 11, 0.85);
    border-bottom-color: var(--border);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-mark {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 12px var(--accent-glow));
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.logo-accent {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 2px;
}

.nav {
    display: flex;
    gap: 36px;
    margin-left: auto;
    margin-right: 24px;
}

.nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad);
    transition: width 0.25s ease;
}

.nav a:hover {
    color: var(--text);
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    color: var(--text);
    text-decoration: none;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav .btn {
    margin-top: 12px;
    border-bottom: none;
}

/* ============================================
   Hero
   ============================================ */

.hero {
    padding: 180px 0 120px;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

@media (min-width: 1025px) {
    .hero-content { padding-top: 8px; }
}

.hero-logo {
    display: block;
    max-width: 520px;
    width: 100%;
    height: auto;
    margin-bottom: 28px;
    filter: drop-shadow(0 8px 32px rgba(45, 212, 191, 0.3));
}

.hero-content > .eyebrow {
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Terminal visual */
.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(45, 212, 191, 0.2) 0%, transparent 65%);
    filter: blur(40px);
    z-index: -1;
}

.terminal {
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(45, 212, 191, 0.1);
}

.terminal-bar {
    background: var(--bg-elev-2);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.tdot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.tdot-red { background: #ff5f57; }
.tdot-amber { background: #febc2e; }
.tdot-green { background: #28c840; }

.terminal-title {
    margin-left: 12px;
    font-size: 12px;
    color: var(--text-mute);
    font-family: 'Consolas', 'Monaco', monospace;
}

.terminal-body {
    padding: 24px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13.5px;
    line-height: 2;
    color: var(--text);
}

.terminal-body .line {
    display: flex;
    gap: 12px;
    align-items: center;
}

.terminal-body .prompt {
    color: var(--accent);
    font-weight: bold;
}

.terminal-body .success { color: var(--success); }
.terminal-body .warning { color: var(--warning); }
.terminal-body .muted { color: var(--text-mute); margin-left: auto; font-size: 12px; }

.cursor {
    display: inline-block;
    width: 8px;
    background: var(--accent);
    animation: blink 1s steps(2) infinite;
    color: transparent;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ============================================
   Section headings
   ============================================ */

section {
    padding: 120px 0;
    position: relative;
}

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

.section-head .eyebrow {
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(34px, 4.5vw, 52px);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.section-sub {
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.7;
}

/* ============================================
   Services Grid
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(45, 212, 191, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 212, 191, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(45, 212, 191, 0.1);
}

.service-card:hover::before,
.service-card:hover::after { opacity: 1; }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--grad-soft);
    border: 1px solid rgba(45, 212, 191, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--accent);
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ============================================
   Why Section
   ============================================ */

.why {
    background:
        linear-gradient(180deg, transparent, rgba(45, 212, 191, 0.03) 50%, transparent),
        var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-item {
    background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.why-item:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.why-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.9;
}

.why-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 600;
}

.why-item p {
    color: var(--text-dim);
    font-size: 15.5px;
    line-height: 1.7;
}

/* ============================================
   About Section
   ============================================ */

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .eyebrow {
    margin-bottom: 24px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.about-list {
    list-style: none;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}

.about-list svg {
    color: var(--accent);
    flex-shrink: 0;
}

.card-glow {
    position: relative;
    padding: 2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.4), transparent 50%, rgba(45, 212, 191, 0.2));
}

.metric-card {
    background: var(--bg-elev);
    border-radius: calc(var(--radius-lg) - 2px);
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
}

.metric-bar {
    margin-bottom: 22px;
}

.metric-bar:last-child { margin-bottom: 0; }

.metric-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.metric-bar-label > span:first-child { color: var(--text-dim); }

.value-green { color: var(--success); font-weight: 600; }

.bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--grad);
    border-radius: 999px;
    box-shadow: 0 0 12px var(--accent-glow);
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    padding-bottom: 140px;
}

.contact-card {
    background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

.contact-content .section-title {
    text-align: left;
    margin: 20px 0;
}

.contact-content > p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    transition: all 0.25s;
}

a.contact-item:hover {
    background: rgba(45, 212, 191, 0.05);
    border-color: rgba(45, 212, 191, 0.25);
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--grad-soft);
    border: 1px solid rgba(45, 212, 191, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-label {
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

/* Honeypot — visually hidden, accessible to bots only */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.form-logo {
    display: block;
    width: 110px;
    height: auto;
    margin: 0 0 4px auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 28px rgba(45, 212, 191, 0.35));
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 15px;
    transition: all 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(45, 212, 191, 0.04);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239da3ad' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group select option {
    background: var(--bg-elev);
    color: var(--text);
}

.form-note {
    font-size: 14px;
    color: var(--success);
    text-align: center;
    min-height: 20px;
}

/* ============================================
   Trust Bar
   ============================================ */

.trustbar {
    padding: 4px 0 52px;
    border-bottom: 1px solid var(--border);
}

.trustbar-label {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mute);
    margin-bottom: 28px;
}

.trustbar-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 32px;
}

.trustbar-track span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dim);
    opacity: 0.75;
    white-space: nowrap;
    transition: color 0.25s, opacity 0.25s;
}

.trustbar-track span:hover {
    color: var(--text);
    opacity: 1;
}

/* ============================================
   Process
   ============================================ */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    position: relative;
    padding: 32px 28px;
    background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 212, 191, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(45, 212, 191, 0.1);
}

.process-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.process-num {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(45, 212, 191, 0.4);
}

.process-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--grad-soft);
    border: 1px solid rgba(45, 212, 191, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.process-icon svg { width: 23px; height: 23px; }

.process-step h3 {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-item[open] {
    border-color: var(--border-strong);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item summary:hover { color: var(--accent); }

.faq-toggle {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.25s ease;
}

.faq-toggle::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-toggle::after { left: 8px; top: 0; width: 2px; height: 18px; }

.faq-item[open] .faq-toggle::after { transform: scaleY(0); }

.faq-answer {
    padding: 0 26px 24px;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.75;
}

.faq-item[open] .faq-answer {
    animation: faqIn 0.3s ease;
}

@keyframes faqIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col li,
.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14.5px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-mute);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero { padding: 140px 0 80px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; gap: 60px; }
    .contact-card { grid-template-columns: 1fr; gap: 48px; padding: 48px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    section { padding: 90px 0; }
}

@media (max-width: 768px) {
    .nav, .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .hero { padding: 120px 0 60px; }
    .hero-logo { max-width: 400px; margin-bottom: 24px; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .stat-num { font-size: 28px; }
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-list { grid-template-columns: 1fr; }
    .contact-card { padding: 32px 24px; }
    .form-logo { width: 110px; margin-bottom: 4px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .process-grid { grid-template-columns: 1fr; gap: 16px; }
    .trustbar-track { gap: 12px 22px; }
    .trustbar-track span { font-size: 14px; }
    .faq-item summary { font-size: 16px; padding: 18px 20px; }
    .faq-answer { padding: 0 20px 20px; }
    section { padding: 70px 0; }
    .section-head { margin-bottom: 50px; }
    .why-item { padding: 32px 28px; }
    .metric-card { padding: 28px; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-stats { gap: 20px; }
    .container { padding: 0 20px; }
}
