/* Gold Coast Geek Squad — Cybersecurity & Managed IT
   Brand: near-black + gold. Fonts: Sora (headings), Inter (body). */

:root {
  --black: #0e0e0f;
  --black-2: #15151a;
  --panel: #1b1c22;
  --panel-2: #202229;
  --line: rgba(255, 255, 255, 0.10);
  --text: #eceef2;
  --muted: #a7abb6;
  --gold: #d8a93f;
  --gold-2: #f0c45a;
  --gold-soft: rgba(216, 169, 63, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-mark { font-family: "Sora", "Inter", sans-serif; line-height: 1.12; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; margin: 0; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; margin: 0; }
h3 { font-size: 1.18rem; font-weight: 600; margin: 0 0 .4rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }

.gold { color: var(--gold); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-head { max-width: 680px; margin: 0 0 48px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-size: .76rem;
  font-weight: 600; color: var(--gold); margin: 0 0 .8rem;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.3rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: .9rem 1.7rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #2a1d00; }
.btn-gold:hover { background: linear-gradient(135deg, #ffd672, var(--gold-2)); }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-phone { border: 1px solid var(--gold); color: var(--gold); padding: .5rem 1rem; }
.btn-phone:hover { background: var(--gold-soft); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 14, 15, 0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-logo-wrap { position: relative; display: inline-flex; }
.brand-logo { height: 40px; width: auto; display: block; }
.brand-tm { position: absolute; top: 0; right: -9px; font-size: .58rem; line-height: 1; font-weight: 700; color: var(--gold); }
.brand-mark {
  font-weight: 800; letter-spacing: .04em; font-size: 1.05rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #2a1d00;
  padding: .35rem .55rem; border-radius: 8px;
}
.brand-name { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: .04em; color: var(--text); }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { color: var(--muted); font-size: .95rem; font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav a.btn-phone { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(60px, 10vw, 130px) 0 clamp(80px, 9vw, 120px); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(216,169,63,0.30), transparent 60%),
    radial-gradient(700px 500px at 110% 30%, rgba(216,169,63,0.16), transparent 55%),
    linear-gradient(180deg, #0c0c0d, #0e0e0f);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-copy { max-width: 660px; }
.hero-media { display: flex; justify-content: center; align-items: center; }
.hero-logo { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.hero-logo-mark { position: relative; display: inline-block; }
.hero-logo-mark img { width: 200px; height: auto; display: block; filter: drop-shadow(0 18px 50px rgba(0,0,0,.5)); }
.hero-tm { position: absolute; top: 6px; right: -16px; font-size: 1rem; line-height: 1; font-weight: 700; color: var(--gold); }
.hero-logo-word { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.6rem; letter-spacing: .22em; color: var(--text); padding-left: .22em; }
.hero .lede { font-size: 1.18rem; color: var(--muted); max-width: 600px; margin-top: 1.1rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 1.6rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; list-style: none; padding: 0; margin: 0; color: var(--muted); font-size: .95rem; }
.hero-points strong { color: var(--gold); }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; height: 64px; background: linear-gradient(180deg, transparent, var(--black)); z-index: 1; }

/* Trust bar */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--black-2); padding: 30px 0; }
.trust-label { text-align: center; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 16px; }
.trust-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px; list-style: none; padding: 0; margin: 0; }
.trust-list li { color: #cfd3db; font-weight: 600; font-size: 1rem; opacity: .82; }

/* Cards / services */
.grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(216,169,63,.5); }
.card p { color: var(--muted); font-size: .96rem; }
.card ul { list-style: none; padding: 0; margin: .8rem 0 0; }
.card ul li { position: relative; padding-left: 1.3rem; margin-bottom: .45rem; color: #cdd1da; font-size: .93rem; }
.card ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); }
.card-icon { font-size: 1.7rem; margin-bottom: .7rem; }
.card-accent { border-color: rgba(216,169,63,.45); background: linear-gradient(180deg, rgba(216,169,63,.10), var(--panel-2)); }
.card-link { color: var(--gold); font-weight: 600; font-size: .95rem; display: inline-block; margin-top: .6rem; }

/* Compliance */
.compliance { background: var(--black-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compliance-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; color: #cdd1da; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }
.compliance-card { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.framework-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.framework-list li { display: flex; flex-direction: column; padding: 14px 0; border-bottom: 1px solid var(--line); }
.framework-list li:last-child { border-bottom: 0; }
.framework-list strong { color: var(--text); }
.framework-list span { color: var(--muted); font-size: .88rem; }

/* Why */
.why-grid { grid-template-columns: repeat(3, 1fr); }
.why-item { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.why-num { font-family: "Sora", sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: .6rem; }
.why-item p { color: var(--muted); font-size: .95rem; margin: 0; }
.quote { margin: 48px auto 0; max-width: 720px; text-align: center; }
.quote blockquote { font-family: "Sora", sans-serif; font-size: 1.4rem; font-weight: 600; margin: 0 0 .8rem; color: var(--text); }
.quote figcaption { color: var(--muted); font-size: .95rem; }
.quote figcaption strong { color: var(--gold); }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.contact-list li { display: flex; flex-direction: column; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-list span { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 2px; }
.contact-list a { color: var(--gold); font-weight: 600; }
.contact-form { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; background: var(--black); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--text); padding: .7rem .85rem; font: inherit; transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: .9rem; margin: .8rem 0 0; min-height: 1.2em; }
.form-privacy { font-size: .8rem; color: var(--muted); margin: .3rem 0 0; }
.form-privacy a { color: var(--gold); }
.form-note.ok { color: #6fcf97; }
.form-note.err { color: #eb6a6a; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--black-2); padding: 48px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer-brand { max-width: 360px; }
.footer-logo { display: inline-flex; flex-direction: column; align-items: center; gap: .3rem; margin: 0 0 .6rem; }
.footer-logo-mark { position: relative; display: inline-block; }
.footer-logo-mark img { width: 78px; height: auto; display: block; }
.footer-tm { position: absolute; top: 1px; right: -9px; font-size: .5rem; line-height: 1; font-weight: 700; color: var(--gold); }
.footer-logo-word { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.45rem; letter-spacing: .22em; color: var(--text); padding-left: .22em; }
.footer-logo-tag { font-size: .6rem; letter-spacing: .05em; font-weight: 600; color: var(--gold); }
.footer-brand p { color: var(--muted); font-size: .92rem; margin: .6rem 0 0; }
.footer-brand .trademark { font-size: .78rem; color: #7f828c; margin-top: .6rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.footer-links a { color: var(--muted); font-size: .95rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; color: var(--muted); font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* Industries */
.industries-grid { grid-template-columns: repeat(3, 1fr); }
.industry {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  transition: transform .2s ease, border-color .2s ease;
}
.industry:hover { transform: translateY(-4px); border-color: rgba(216,169,63,.5); }
.industry p { color: var(--muted); font-size: .94rem; margin: 0; }

/* Process */
.process { background: var(--black-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { grid-template-columns: repeat(3, 1fr); }
.step {
  position: relative; background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
}
.step-num {
  font-family: "Sora", sans-serif; font-size: 1.05rem; font-weight: 800; color: #2a1d00;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* About */
.about-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.about-stats { display: grid; gap: 18px; }
.partners { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.4rem; }
.partner-badge {
  border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem;
  font-size: .85rem; font-weight: 600; color: #cfd3db; background: rgba(255,255,255,.02);
}
.reviews-grid { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.reviews-single { max-width: 580px; margin: 48px auto 0; }
.review {
  margin: 0; background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.review blockquote { margin: 0 0 1rem; color: var(--text); font-size: 1.02rem; line-height: 1.5; }
.review figcaption { display: flex; flex-direction: column; }
.review figcaption strong { color: var(--gold); }
.review figcaption span { color: var(--muted); font-size: .85rem; }

/* Free assessment band */
.assess { padding: clamp(40px, 6vw, 64px) 0; }
.assess-card {
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center;
  background: linear-gradient(135deg, rgba(216,169,63,.16), var(--panel-2));
  border: 1px solid rgba(216,169,63,.45); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow);
}
.assess-points { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; list-style: none; padding: 0; margin: 1rem 0 0; color: #cdd1da; font-size: .95rem; }
.assess-points li { position: relative; padding-left: 1.4rem; }
.assess-points li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.assess-cta { display: flex; flex-direction: column; gap: .8rem; }
.assess-cta .btn { width: 100%; }

/* Legal pages */
.legal { padding: clamp(48px, 7vw, 96px) 0; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0 0 .3rem; }
.legal .updated { color: var(--muted); font-size: .9rem; margin: 0 0 2rem; }
.legal h2 { font-size: 1.25rem; font-weight: 600; color: var(--text); margin: 2.2rem 0 .6rem; }
.legal p { color: #cdd1da; font-size: .98rem; }
.legal ul { padding-left: 1.2rem; margin: .4rem 0 1rem; }
.legal li { color: #cdd1da; font-size: .98rem; margin-bottom: .4rem; }
.legal a { color: var(--gold); }
.legal a:hover { text-decoration: underline; }
.legal-back { display: inline-block; margin-top: 1.4rem; font-weight: 600; }

/* Responsive */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .compliance-inner, .contact-inner, .about-inner { grid-template-columns: 1fr; }
  .assess-card { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--black-2); border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px; transform: translateY(-130%); transition: transform .28s ease; z-index: 40;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav a.btn-phone { margin-top: 12px; border: 1px solid var(--gold); text-align: center; }
  .nav-toggle { display: flex; }
  .services-grid, .industries-grid, .process-grid { grid-template-columns: 1fr; }
}
