/* ============================================================
   DBNet Development & Design — Main Stylesheet
   High-contrast, colorblind-friendly dark theme
   ============================================================ */

/* --- RESET & ROOT ----------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold:          #f0c040;
    --gold-hover:    #ffd060;
    --gold-dim:      rgba(240, 192, 64, 0.15);
    --gold-border:   rgba(240, 192, 64, 0.35);

    --dark:          #080810;
    --dark2:         #0f0f1c;
    --dark3:         #181828;
    --card:          #1a1a2e;
    --card-hover:    #20203a;

    --text:          #ffffff;
    --text-muted:    #c8c8d8;
    --text-dim:      #a0a0c0;

    --border:        rgba(255, 255, 255, 0.14);
    --border-strong: rgba(255, 255, 255, 0.30);
    --border-gold:   rgba(240, 192, 64, 0.50);

    --serif:  'Playfair Display', Georgia, serif;
    --sans:   'DM Sans', system-ui, sans-serif;

    --radius: 3px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

img { max-width: 100%; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-hover); }

/* --- HERO HEADING OVERRIDES ------------------------------- */
/* Semantic h2 replacements that must look like their predecessors */
.hero-cta-heading {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}
.hero-specialize-heading {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--text);
    line-height: 1.08;
}

h1 { font-size: clamp(48px, 7vw, 88px); font-weight: 900; }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: 22px; }
h4 { font-size: 17px; font-family: var(--sans); }
h5 { font-size: 14px; font-family: var(--sans); font-weight: 700; }

p { color: var(--text-muted); line-height: 1.85; }

em { font-style: italic; color: var(--gold); }

/* --- UTILITY ---------------------------------------------- */
.section-wrap  { padding: 90px 56px; }
.section-wrap--alt { background: var(--dark2); }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}
.eyebrow span {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.section-divider { height: 2px; background: var(--border); }

.tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: #000;
    padding: 4px 10px;
    font-weight: 700;
    font-family: var(--sans);
}

/* --- BUTTONS ---------------------------------------------- */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 15px 40px;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark {
    background: #000;
    color: var(--gold);
    border-color: #000;
    width: 100%;
}
.btn-dark:hover { background: #111; color: var(--gold); }

/* --- NAVIGATION ------------------------------------------- */
#site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 56px;
    border-bottom: 2px solid var(--gold);
    background: rgba(8, 8, 16, 0.97);
    backdrop-filter: blur(12px);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo-img    { height: 38px; width: auto; object-fit: contain; flex-shrink: 0; }
.nav-logo-text   { line-height: 1.2; color: #ffffff; }
.nav-logo-db     { color: #ffffff; }
.nav-logo-net    { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
    font-size: 12px;
    padding: 10px 26px;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--sans);
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: #000; }

/* Hamburger (mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 10px;
    line-height: 1;
}

/* --- FOOTER ----------------------------------------------- */
#site-footer {
    background: var(--dark2);
    border-top: 2px solid var(--gold);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 64px 56px 48px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    display: block;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border: 2px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h2,
.footer-col-heading {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); }
.footer-col ul a:hover { color: var(--gold); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-muted);
}
.footer-contact-icon {
    width: 30px;
    height: 30px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #000;
    flex-shrink: 0;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 56px;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); }

/* --- TRUST BAR -------------------------------------------- */
.trust-bar {
    display: flex;
    align-items: stretch;
    border-bottom: 2px solid var(--border);
    border-top: 2px solid var(--border);
}
.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-num {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    white-space: nowrap;
}
.trust-label { font-size: 13px; color: var(--text-muted); line-height: 1.45; }
.trust-label strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; margin-bottom: 2px; }

/* --- CARDS ------------------------------------------------ */
.card {
    background: var(--card);
    border: 2px solid var(--border);
    padding: 32px;
    transition: border-color 0.25s;
}
.card:hover { border-color: var(--border-gold); }

.card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.card-head h3 { font-family: var(--serif); font-size: 20px; }

/* --- SERVICE CARDS ---------------------------------------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}
.svc-card {
    background: var(--dark2);
    padding: 40px 32px;
    border: 2px solid transparent;
    transition: border-color 0.25s, background 0.25s;
    position: relative;
}
.svc-card:hover {
    background: var(--card);
    border-color: var(--gold);
}
.svc-num {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(240, 192, 64, 0.25);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
    user-select: none;
}
.svc-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.svc-icon {
    width: 42px;
    height: 42px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.svc-card h3 { font-family: var(--serif); font-size: 21px; margin-bottom: 12px; }
.svc-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }

.svc-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.svc-features li {
    font-size: 12px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}
.svc-features li::before {
    content: '';
    display: block;
    width: 14px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}
.svc-link {
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.2s;
    font-family: var(--sans);
}
.svc-card:hover .svc-link { opacity: 1; }

/* --- PORTFOLIO CARDS -------------------------------------- */
.port-item {
    background: var(--card);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.port-accent-bar {
    height: 3px;
    background: var(--gold);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
    will-change: transform;
}
.port-item:hover .port-accent-bar { transform: scaleX(1); }
.port-thumb {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
}
.port-mock-browser {
    background: var(--dark3);
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    flex: 1;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}
.port-mock-bar {
    height: 24px;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}
.port-mock-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--border-strong);
}
.port-mock-lines { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.mock-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}
.mock-line--gold  { background: rgba(240, 192, 64, 0.28); }
.mock-line--short { width: 40%; }
.mock-line--med   { width: 65%; }
.mock-line--long  { width: 88%; }

.port-label {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.port-label h4 { font-family: var(--serif); font-size: 17px; margin-bottom: 3px; }
.port-cat {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    font-family: var(--sans);
}
.port-view-btn {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    border: 1px solid var(--border);
    padding: 6px 12px;
    transition: all 0.2s;
    font-family: var(--sans);
    font-weight: 600;
}
.port-item:hover .port-view-btn { border-color: var(--gold); color: var(--gold); }

/* --- TESTIMONIAL CARDS ------------------------------------ */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.test-card {
    background: var(--card);
    border: 2px solid var(--border);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s;
}
.test-card:hover { border-color: var(--gold); }

.test-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}
.test-stars { display: flex; gap: 3px; }
.test-star  { color: var(--gold); font-size: 15px; }
.test-type  {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold-dim);
    color: var(--gold);
    padding: 4px 10px;
    font-weight: 700;
    border: 1px solid var(--gold-border);
    font-family: var(--sans);
}
.test-quote-mark {
    font-family: var(--serif);
    font-size: 60px;
    color: var(--gold);
    line-height: 0.7;
    margin-bottom: 16px;
    opacity: 0.65;
}
.test-card > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 28px;
}
.test-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.test-author  { display: flex; align-items: center; gap: 12px; }
.test-avatar  {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-dim);
    flex-shrink: 0;
}
.test-name { font-size: 14px; font-weight: 700; color: var(--text); font-family: var(--sans); }
.test-role { font-size: 12px; color: var(--text-dim); }

/* --- CONTACT FORM ----------------------------------------- */
.form-field { margin-bottom: 18px; }
.form-field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 700;
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    background: var(--card);
    border: 2px solid var(--border-strong);
    color: var(--text);
    font-family: var(--sans);
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    border-radius: var(--radius);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field textarea { height: 130px; resize: vertical; }
.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0c040' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: var(--card);
    cursor: pointer;
}
.form-field select option { background: var(--dark2); color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
    font-family: var(--sans);
    border-radius: var(--radius);
}
.form-submit:hover { background: transparent; color: var(--gold); }

.form-msg {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    margin-top: 14px;
    display: none;
}
.form-msg.success { background: rgba(80,200,100,0.15); border: 2px solid rgba(80,200,100,0.5); color: #7ddfA0; }
.form-msg.error   { background: rgba(220,80,80,0.15);  border: 2px solid rgba(220,80,80,0.5);  color: #f08080; }

/* --- CONTACT INFO ROWS ------------------------------------ */
.contact-info-rows { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: var(--card);
    border: 2px solid var(--border);
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    flex-shrink: 0;
    font-weight: 700;
}
.contact-row-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-row-text span   { font-size: 13px; color: var(--text-muted); }
.contact-row-text a      { color: var(--text-muted); }
.contact-row-text a:hover { color: var(--gold); }

.contact-promise {
    margin-top: 24px;
    padding: 22px 24px;
    border-left: 4px solid var(--gold);
    background: var(--card);
}
.contact-promise p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.contact-promise strong { color: var(--text); }

/* --- PROCESS STEPS ---------------------------------------- */
.process-steps { display: flex; flex-direction: column; gap: 16px; }
.proc-step { display: flex; align-items: flex-start; gap: 16px; }
.proc-num {
    width: 30px;
    height: 30px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}
.proc-text h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; font-family: var(--sans); }
.proc-text p  { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* --- TECH GRID -------------------------------------------- */
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tech-item {
    background: var(--dark3);
    border: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.tech-dot { width: 8px; height: 8px; background: var(--gold); flex-shrink: 0; }

/* --- VALUES LIST ------------------------------------------ */
.about-values { margin-top: 32px; }
.val-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}
.val-row:last-child { border-bottom: 1px solid var(--border); }
.val-icon {
    width: 38px;
    height: 38px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    flex-shrink: 0;
    font-weight: 700;
    font-family: var(--sans);
}
.val-text h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; font-family: var(--sans); }
.val-text p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* --- STAT BOXES ------------------------------------------- */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.stat-box { background: var(--dark2); padding: 28px 24px; }
.stat-box .n {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-box .l {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* --- SPEC LIST (hero sidebar) ----------------------------- */
.spec-list { display: flex; flex-direction: column; }
.spec-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}
.spec-row:first-child { border-top: 1px solid var(--border); }
.spec-row span { color: var(--text); }
.spec-icon {
    width: 36px;
    height: 36px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    color: var(--gold);
}

/* --- PAGE HERO (inner pages) ------------------------------ */
.page-hero {
    padding: 80px 56px 64px;
    border-bottom: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,192,64,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 22px; }
.page-hero p { font-size: 17px; max-width: 560px; }

/* --- ALERT / NOTICE BOX ----------------------------------- */
.notice {
    padding: 20px 24px;
    border-left: 4px solid var(--gold);
    background: var(--card);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
.notice strong { color: var(--text); }

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
    .section-wrap  { padding: 70px 36px; }
    #site-nav      { padding: 16px 36px; }
    .footer-main   { grid-template-columns: 1fr 1fr; padding: 48px 36px 36px; }
    .footer-bottom { padding: 18px 36px; }
    .trust-bar     { flex-wrap: wrap; }
    .trust-item    { min-width: 50%; border-bottom: 1px solid var(--border); }
    .svc-grid      { grid-template-columns: repeat(2, 1fr); }
    .test-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: clamp(38px, 8vw, 60px); }
    .section-wrap  { padding: 56px 24px; }
    #site-nav      { padding: 14px 24px; }
    .nav-links     { display: none; }
    .nav-cta       { display: none; }
    .nav-toggle    { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        border-bottom: 2px solid var(--gold);
        padding: 24px;
        gap: 20px;
        z-index: 99;
    }
    .footer-main   { grid-template-columns: 1fr; padding: 40px 24px 28px; }
    .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
    .svc-grid      { grid-template-columns: 1fr; }
    .test-grid     { grid-template-columns: 1fr; }
    .form-row      { grid-template-columns: 1fr; }
    .trust-item    { min-width: 100%; }
}

/* --- SHIMMER (used by portfolio screenshot cards) ---------- */
@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
