/* ==========================================================================
   Josseling Gutiérrez — brand site
   Palette carried over from the original profile page: plum / violet / coral / gold
   ========================================================================== */

:root {
  --ink: #1c1330;
  --plum: #3b1d5e;
  --violet: #6d28d9;
  --coral: #ff5a7e;
  --gold: #f5b544;
  --paper: #fff;
  --mist: #f6f2fb;
  --line: #e7def5;
  --muted: #6b6480;
  --wash: #eee6f7;

  --shell: 1080px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 60px rgba(59, 29, 94, .16);
  --shadow-sm: 0 6px 20px rgba(59, 29, 94, .10);
  --grad: linear-gradient(135deg, var(--plum) 0%, var(--violet) 58%, var(--coral) 130%);
  --grad-warm: linear-gradient(135deg, var(--violet), var(--coral));

  --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--wash);
  line-height: 1.6;
  font-size: 16px;
}

/* height:auto is required, not cosmetic. Every <img> carries width/height
   attributes so the browser can reserve space and avoid layout shift, but those
   attributes also act as a fixed CSS height — which suppresses `aspect-ratio`
   and squashes any image whose width is constrained. Rules below that set an
   explicit height (gallery, proof grid) still win on specificity. */
img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet); }

/* Visible keyboard focus everywhere */
:focus-visible { outline: 3px solid var(--violet); outline-offset: 2px; border-radius: 4px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--plum); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
  font-weight: 700; text-decoration: none;
}
.skip:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 20px; }

/* ============================================================ Site header */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar .shell { display: flex; align-items: center; gap: 18px; height: 62px; }

.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--plum); text-decoration: none;
  letter-spacing: -.3px; font-size: 15px; white-space: nowrap;
}
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--grad-warm);
  color: #fff; display: grid; place-items: center; font-size: 15px; flex: none;
}

.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav a {
  color: var(--ink); text-decoration: none; font-size: 13.5px; font-weight: 600;
  padding: 8px 11px; border-radius: 8px; white-space: nowrap;
}
.nav a:hover { background: var(--mist); color: var(--plum); }

.nav .btn-nav {
  background: var(--grad-warm); color: #fff; padding: 9px 18px; border-radius: 999px;
}
.nav .btn-nav:hover { background: var(--plum); color: #fff; }

/* Language switcher */
.lang { display: flex; align-items: center; gap: 2px; background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang a {
  font-size: 12px; font-weight: 800; padding: 5px 11px; border-radius: 999px;
  text-decoration: none; color: var(--muted); text-transform: uppercase; letter-spacing: .5px;
}
.lang a[aria-current="true"] { background: var(--plum); color: #fff; }
.lang a:hover { color: var(--plum); background: #fff; }
.lang a[aria-current="true"]:hover { background: var(--plum); color: #fff; }

.nav-toggle {
  display: none; margin-left: auto; background: var(--mist); border: 1px solid var(--line);
  border-radius: 10px; width: 40px; height: 38px; cursor: pointer; color: var(--plum);
  font-size: 18px; line-height: 1;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 62px; left: 0; right: 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px; box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 12px 10px; font-size: 15px; }
  .nav .btn-nav { text-align: center; margin-top: 8px; }
  .lang { align-self: flex-start; margin-top: 8px; }
}

/* ============================================================ Language nudge */
.langnudge {
  display: none; background: var(--plum); color: #fff; font-size: 13.5px;
}
.langnudge.show { display: block; }
.langnudge .shell { display: flex; align-items: center; gap: 14px; padding-top: 10px; padding-bottom: 10px; flex-wrap: wrap; }
.langnudge a { color: var(--gold); font-weight: 800; }
.langnudge button {
  margin-left: auto; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .3);
  color: #fff; border-radius: 999px; width: 26px; height: 26px; flex: none;
  cursor: pointer; font-size: 14px; line-height: 1;
}
/* Keep the banner to a single line on phones — wrapped, it stole ~40px from the
   hero and pushed the call to action off screen. */
@media (max-width: 560px) {
  .langnudge { font-size: 12.5px; }
  .langnudge .shell { padding: 7px 16px; gap: 8px; flex-wrap: nowrap; }
  .langnudge .shell > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* ============================================================ Hero */
.hero { background: var(--grad); color: #fff; position: relative; overflow: hidden; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 80% 10%, rgba(245, 181, 68, .22), transparent 70%);
  pointer-events: none;
}
.hero .shell {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center;
  padding-top: 64px; padding-bottom: 64px; position: relative; z-index: 2;
}

.kicker {
  text-transform: uppercase; letter-spacing: 3.5px; font-size: 11px; font-weight: 800;
  color: var(--gold); margin-bottom: 14px;
}
.hero h1 { font-size: clamp(30px, 5vw, 46px); line-height: 1.08; font-weight: 800; letter-spacing: -1.2px; }
.hero h1 .accent { color: var(--gold); }
.hero .lede { margin-top: 18px; font-size: 17px; color: #f3e9ff; max-width: 30em; }
.hero .role { margin-top: 12px; font-size: 14px; font-weight: 700; color: #e7d9ff; letter-spacing: .2px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-weight: 800; font-size: 14.5px; padding: 13px 24px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; font-family: var(--font);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #3b1d5e; box-shadow: 0 8px 24px rgba(245, 181, 68, .35); }
.btn-gold:hover { background: #ffc65e; }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-ghost:hover { background: rgba(255, 255, 255, .22); }
.btn-solid { background: var(--grad-warm); color: #fff; box-shadow: 0 8px 24px rgba(109, 40, 217, .3); }
.btn-solid:hover { box-shadow: 0 12px 30px rgba(109, 40, 217, .4); }
.btn-line { background: #fff; color: var(--plum); border-color: var(--line); }
.btn-line:hover { border-color: var(--violet); }
.btn-wa { background: #25d366; color: #06301a; box-shadow: 0 8px 24px rgba(37, 211, 102, .3); }
.btn-wa:hover { background: #3ee27c; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .28);
  padding: 6px 13px; border-radius: 999px; color: #fff;
}
.badge b { color: var(--gold); }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; border-radius: 22px; box-shadow: 0 24px 60px rgba(20, 8, 40, .4);
  border: 3px solid rgba(255, 255, 255, .3); aspect-ratio: 4 / 3; object-fit: cover; object-position: center 22%;
}

@media (max-width: 860px) {
  .hero .shell { grid-template-columns: 1fr; gap: 26px; padding-top: 34px; padding-bottom: 40px; }
  .hero-photo { order: -1; max-width: 420px; }
}
/* On a phone the headline and the primary CTA both have to be reachable without
   scrolling, so the portrait gives up space rather than pushing them down. */
@media (max-width: 560px) {
  .hero .shell { gap: 22px; }
  .hero-photo { max-width: 280px; margin: 0 auto; }
  .hero .lede { margin-top: 14px; font-size: 16px; }
  .hero .role { margin-top: 10px; }
  .hero-cta { margin-top: 20px; }
  .hero-badges { margin-top: 18px; }
}

/* ============================================================ Sections */
main { background: var(--paper); }

section { padding: 70px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: 0; }
.tint { background: var(--mist); }

.head { max-width: 720px; margin-bottom: 34px; }
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase;
  letter-spacing: 2.4px; font-size: 11px; font-weight: 800; color: var(--coral); margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 22px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--coral), var(--gold)); }
.head.center .eyebrow::before { display: none; }
h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; color: var(--plum); letter-spacing: -.7px; line-height: 1.2; }
.head p { margin-top: 12px; font-size: 16.5px; color: var(--muted); }

/* Scroll-reveal. The hidden state is applied by JS only, so with JS off,
   an old browser, or a script error, every section renders normally. */
.card, .stat, .plat, .proof { transition: opacity .5s ease, transform .5s ease; }
.pre-reveal { opacity: 0; transform: translateY(14px); }

/* ============================================================ Stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; text-align: center;
}
.stat .n { font-size: clamp(26px, 4vw, 34px); font-weight: 800; color: var(--coral); line-height: 1; letter-spacing: -1px; }
.stat .l { font-size: 12.5px; color: var(--muted); margin-top: 8px; font-weight: 600; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ============================================================ Services */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: linear-gradient(160deg, #fff, #faf7fe); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(109, 40, 217, .14); border-color: #d9c9f2; }
.card .ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-warm); color: #fff; font-size: 22px; margin-bottom: 14px;
}
.card h3 { font-size: 16.5px; color: var(--plum); margin-bottom: 7px; font-weight: 800; letter-spacing: -.2px; }
.card p { font-size: 14px; color: var(--muted); }
.card ul { margin: 10px 0 0 0; padding-left: 17px; font-size: 13px; color: var(--muted); }
.card ul li { margin-bottom: 3px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

/* ============================================================ Industries */
.tags { display: flex; flex-wrap: wrap; gap: 9px; }
.tag {
  background: var(--paper); border: 1px solid var(--line); color: var(--plum);
  padding: 9px 16px; border-radius: 10px; font-size: 14px; font-weight: 700;
}

/* ============================================================ Platforms */
.platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plat {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: center; text-decoration: none; color: inherit; display: block;
  transition: transform .16s ease, box-shadow .16s ease;
}
.plat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.plat .name { font-size: 14.5px; font-weight: 800; color: var(--plum); }
.plat .handle { font-size: 12.5px; color: var(--muted); margin: 3px 0 10px; }
.plat .big { font-size: 26px; font-weight: 800; color: var(--coral); letter-spacing: -1px; }
.plat .sub { font-size: 11.5px; color: var(--muted); margin-top: 4px; }
@media (max-width: 700px) { .platforms { grid-template-columns: 1fr; } }

/* ============================================================ Proof + gallery */
.proofgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof {
  display: flex; flex-direction: column; gap: 18px;
  text-decoration: none; color: inherit;
  background: linear-gradient(168deg, #fff 0%, #fdfbff 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px 22px;
  box-shadow: 0 1px 2px rgba(59, 29, 94, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.proof:hover { transform: translateY(-5px); border-color: #d9c9f2; box-shadow: 0 18px 42px rgba(109, 40, 217, .16); }

/* Brand marks sit on their own colour so each platform is recognisable at a
   glance; the glyphs are inline SVG so nothing is fetched from a third party. */
.proof-top { display: flex; align-items: center; gap: 13px; }
.proof .logo {
  width: 50px; height: 50px; flex: 0 0 50px; border-radius: 15px;
  display: grid; place-items: center; color: #fff;
}
.proof .logo.ig {
  background: radial-gradient(circle at 28% 108%, #fdd76a 0%, #fa7e1e 26%, #e4405f 52%, #c13584 70%, #5b51d8 100%);
  box-shadow: 0 7px 18px rgba(228, 64, 95, .34);
}
.proof .logo.tt { background: #010101; box-shadow: 0 7px 18px rgba(1, 1, 1, .3); }
.proof .logo.fb { background: #1877f2; box-shadow: 0 7px 18px rgba(24, 119, 242, .34); }
.proof-id { display: flex; flex-direction: column; min-width: 0; }
.proof .pname { font-size: 15.5px; font-weight: 800; color: var(--plum); letter-spacing: -.2px; }
.proof .phandle {
  font-size: 12.5px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.proof-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.proof .metric { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.proof .metric + .metric { border-left: 1px solid var(--line); padding-left: 15px; }
.proof .metric .v { font-size: 25px; font-weight: 800; line-height: 1; letter-spacing: -1px; color: var(--coral); }
/* Gradient numerals, but only where the clip is supported — otherwise the
   transparent fill would erase the figure entirely. */
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .proof .metric .v {
    background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent;
  }
}
.proof .metric .k {
  font-size: 10.5px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.proof .pgo {
  margin-top: auto; align-self: flex-start;
  font-size: 12.5px; font-weight: 700; color: var(--violet);
  background: var(--mist); padding: 9px 15px; border-radius: 999px;
  transition: background .16s ease, color .16s ease;
}
.proof:hover .pgo { background: var(--grad-warm); color: #fff; }
@media (max-width: 900px) { .proofgrid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img {
  width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--mist); cursor: zoom-in;
  transition: transform .16s ease, box-shadow .16s ease;
}
.gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-sm); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } .gallery img { height: 240px; } }
@media (max-width: 620px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery img { height: 210px; } }

/* Lightbox */
#lb {
  display: none; position: fixed; inset: 0; background: rgba(20, 10, 40, .93); z-index: 999;
  align-items: center; justify-content: center; padding: 24px;
}
#lb[data-open="true"] { display: flex; }
#lb img { max-width: 94%; max-height: 92%; border-radius: 10px; box-shadow: 0 10px 50px rgba(0, 0, 0, .5); }
#lb .close {
  position: absolute; top: 18px; right: 20px; background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35); color: #fff; width: 42px; height: 42px;
  border-radius: 50%; font-size: 22px; cursor: pointer; line-height: 1;
}

/* ============================================================ About */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; }
.about img { border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.about p { margin-bottom: 14px; font-size: 15.5px; color: #2a2340; }
.about strong { color: var(--violet); }
@media (max-width: 800px) { .about { grid-template-columns: 1fr; gap: 26px; } .about .about-photo { max-width: 300px; } }

/* ============================================================ FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 10px; overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700;
  color: var(--plum); font-size: 15.5px; display: flex; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; margin-left: auto; width: 28px; height: 28px; flex: none; border-radius: 50%;
  background: var(--grad-warm); color: #fff; display: grid; place-items: center;
  font-size: 18px; transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); }
.faq .answer p { margin-bottom: 10px; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ============================================================ Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }

.contact-side .direct { display: grid; gap: 10px; margin-top: 22px; }
.direct a {
  display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; font-weight: 700; font-size: 14.5px;
  transition: border-color .15s ease, transform .15s ease;
}
.direct a:hover { border-color: var(--violet); transform: translateX(3px); }
.direct .ic {
  width: 38px; height: 38px; border-radius: 10px; background: var(--mist);
  display: grid; place-items: center; font-size: 17px; flex: none;
}
.direct .meta { display: block; font-size: 12px; color: var(--muted); font-weight: 600; }

form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--plum); margin-bottom: 6px; }
.field .req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 15px; color: var(--ink);
  background: #fdfcff; border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(109, 40, 217, .13);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--coral); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 520px) { .row2 { grid-template-columns: 1fr; gap: 0; } }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.form-actions .btn { flex: 1; justify-content: center; min-width: 150px; }
.formnote { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }

.formstatus { display: none; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.formstatus.show { display: block; }
.formstatus.ok { background: #e9f9ef; border: 1px solid #b7e8c8; color: #1c6b3a; }
.formstatus.err { background: #fdecef; border: 1px solid #f8c6d0; color: #a3243c; }
.formstatus.busy { background: var(--mist); border: 1px solid var(--line); color: var(--plum); }

/* ============================================================ CTA band */
.cta-band { background: var(--grad); color: #fff; text-align: center; border-bottom: 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e7d9ff; font-size: 16.5px; max-width: 560px; margin: 12px auto 26px; }
.cta-band .hero-cta { justify-content: center; }

/* ============================================================ Footer */
footer { background: var(--ink); color: #b9aecd; padding: 46px 0 30px; font-size: 13.5px; }
.footgrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; margin-bottom: 30px; }
footer h3 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 14px; }
footer a { color: #d9cfe8; text-decoration: none; }
footer a:hover { color: var(--gold); text-decoration: underline; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
.footnote { border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12.5px; }
.seo-line { color: #7d7295; font-size: 12px; margin-top: 10px; line-height: 1.7; }
@media (max-width: 760px) { .footgrid { grid-template-columns: 1fr; gap: 26px; } }

/* Sticky mobile contact bar */
.mobilebar { display: none; }
@media (max-width: 700px) {
  .mobilebar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); padding: 9px 12px; gap: 9px;
    box-shadow: 0 -6px 20px rgba(59, 29, 94, .1);
  }
  .mobilebar .btn { flex: 1; justify-content: center; padding: 12px 10px; font-size: 14px; }
  body { padding-bottom: 68px; }
}
