/*
Theme Name: Fix My Brand
Theme URI: https://fixmybrands.com
Author: Fix My Brand
Description: A fast, custom marketing website for Fix My Brand.
Version: 1.0.1
Text Domain: fix-my-brand
*/

:root {
  --navy: #03123f;
  --navy-2: #071e5f;
  --blue: #145cff;
  --blue-2: #0b43d8;
  --cyan: #14c8ff;
  --ice: #edf7ff;
  --ink: #07142f;
  --muted: #52617a;
  --white: #ffffff;
  --line: #dce8f5;
  --shadow: 0 24px 70px rgba(3, 18, 63, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 100px 0; }
.section--soft { background: linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; background: var(--cyan); content: ""; }
.section-title { max-width: 760px; margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -0.05em; }
.section-copy { max-width: 660px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 25px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--blue), #008cff); box-shadow: 0 14px 34px rgba(20,92,255,.34); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.07); }
.btn--light { color: var(--navy); background: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.16); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.language-switch { z-index: 4; display: flex; flex: 0 0 auto; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 3px; color: #c7dbf7; background: rgba(3,18,63,.48); backdrop-filter: blur(12px); }
.language-switch a { border-radius: 999px; padding: 5px 10px; font-size: .64rem; font-weight: 850; letter-spacing: .04em; }
.language-switch a.is-active { color: var(--navy); background: #fff; }
.nav { display: flex; min-height: 118px; align-items: center; justify-content: space-between; gap: 22px; padding-top: 17px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 13px; color: #fff; letter-spacing: -.03em; }
.brand-logo { width: clamp(275px, 23vw, 340px); height: 84px; object-fit: contain; object-position: left center; }
.brand-mark { position: relative; display: grid; width: 54px; height: 58px; place-items: center; overflow: hidden; border: 1px solid rgba(124,221,255,.72); border-radius: 18px 18px 22px 22px; color: #fff; background: linear-gradient(145deg, rgba(20,200,255,.34), rgba(20,92,255,.62) 46%, rgba(3,18,63,.8)); box-shadow: inset 0 0 0 5px rgba(255,255,255,.07), 0 10px 28px rgba(0,160,255,.25); }
.brand-mark::before { position: absolute; width: 46px; height: 14px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), #fff); transform: rotate(-38deg) translate(3px, 2px); clip-path: polygon(0 28%, 73% 28%, 73% 0, 100% 50%, 73% 100%, 73% 72%, 0 72%); content: ""; }
.brand-mark span { position: relative; z-index: 1; margin: 10px 8px 0 0; font-size: 1.38rem; font-weight: 950; text-shadow: 0 2px 10px rgba(3,18,63,.7); }
.brand-name { display: grid; gap: 2px; }
.brand-name strong { color: #fff; font-size: 1.42rem; font-weight: 850; line-height: 1; letter-spacing: -.055em; }
.brand-name strong i { color: var(--cyan); font-style: normal; }
.brand-name small { color: #a9c9ef; font-size: .58rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 27px); color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 700; }
.nav-links a:hover { color: #fff; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.1); }

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 34%, rgba(20,200,255,.25), transparent 25%),
    radial-gradient(circle at 68% 68%, rgba(20,92,255,.3), transparent 31%),
    linear-gradient(125deg, #020a29 0%, #05184b 55%, #062c99 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent 38%, #000 100%);
  content: "";
}
.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -44vw;
  width: 76vw;
  height: 76vw;
  border: 1px solid rgba(20,200,255,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(20,92,255,.06), 0 0 0 130px rgba(20,92,255,.05), 0 0 0 210px rgba(20,92,255,.04);
  content: "";
}
.hero-inner { position: relative; z-index: 2; display: grid; min-height: 830px; align-items: center; gap: 80px; grid-template-columns: 1.1fr .9fr; padding-top: 140px; }
.hero-copy { max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 8px 13px; color: #d9edff; background: rgba(255,255,255,.07); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.7rem, 6.4vw, 6.8rem); line-height: .91; letter-spacing: -.075em; }
.hero h1 em { display: block; color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: #c9d8f2; font-size: 1.18rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin: 22px 0 0; color: #9fb5dc; font-size: .88rem; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 430px; }
.hero-orbit { position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; animation: spin 18s linear infinite; }
.hero-orbit::before, .hero-orbit::after { position: absolute; border-radius: 50%; content: ""; }
.hero-orbit::before { top: 30px; right: 40px; width: 12px; height: 12px; background: var(--cyan); box-shadow: 0 0 22px var(--cyan); }
.hero-orbit::after { left: 8px; bottom: 105px; width: 8px; height: 8px; background: #fff; }
@keyframes spin { to { transform: rotate(360deg); } }
.growth-card { position: relative; z-index: 2; width: min(370px, 90%); border: 1px solid rgba(255,255,255,.2); border-radius: 30px; padding: 30px; background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04)); box-shadow: 0 30px 80px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
.growth-card-top { display: flex; align-items: center; justify-content: space-between; }
.growth-card-label { color: #bcd1f4; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.growth-card-status { border-radius: 999px; padding: 6px 9px; color: #7dffdb; background: rgba(54,255,190,.12); font-size: .72rem; font-weight: 800; }
.growth-number { margin: 34px 0 4px; font-size: 3.8rem; font-weight: 900; letter-spacing: -.08em; }
.growth-number span { color: var(--cyan); }
.growth-card small { color: #a8bee1; }
.chart { display: flex; height: 118px; align-items: end; gap: 10px; margin-top: 24px; }
.chart span { flex: 1; border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, var(--cyan), var(--blue)); box-shadow: 0 0 18px rgba(20,200,255,.18); }
.chart span:nth-child(1) { height: 22%; }.chart span:nth-child(2) { height: 34%; }.chart span:nth-child(3) { height: 43%; }.chart span:nth-child(4) { height: 58%; }.chart span:nth-child(5) { height: 75%; }.chart span:nth-child(6) { height: 96%; }

.trust-strip { position: relative; z-index: 3; margin-top: -46px; }
.trust-inner { display: grid; overflow: hidden; border: 1px solid rgba(255,255,255,.35); border-radius: 22px; background: #fff; box-shadow: var(--shadow); grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 27px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.08rem; }
.trust-item span { display: block; margin-top: 6px; color: var(--muted); font-size: .84rem; }

.services-grid { display: grid; gap: 20px; margin-top: 52px; grid-template-columns: repeat(3,1fr); }
.service-card { position: relative; overflow: hidden; min-height: 270px; border: 1px solid var(--line); border-radius: 24px; padding: 30px; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #a9c9ff; box-shadow: var(--shadow); }
.service-card::after { position: absolute; right: -45px; bottom: -55px; width: 130px; height: 130px; border-radius: 50%; background: radial-gradient(circle, rgba(20,200,255,.15), transparent 65%); content: ""; }
.service-index { color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin: 38px 0 12px; font-size: 1.35rem; letter-spacing: -.03em; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.text-link { display: inline-block; margin-top: 24px; color: var(--blue); font-size: .86rem; font-weight: 850; }

.pathway-grid { display: grid; gap: 20px; margin-top: 50px; grid-template-columns: repeat(3, 1fr); }
.pathway-card { position: relative; min-height: 330px; overflow: hidden; border: 1px solid #cfe3f8; border-radius: 28px; padding: 32px; background: rgba(255,255,255,.88); box-shadow: 0 18px 55px rgba(3,18,63,.08); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.pathway-card:hover { transform: translateY(-8px); border-color: #7fb6ff; box-shadow: var(--shadow); }
.pathway-card::after { position: absolute; right: -35px; bottom: -35px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(20,200,255,.28), transparent 68%); content: ""; }
.pathway-card span { color: var(--blue); font-size: .73rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.pathway-card h3 { max-width: 300px; margin: 55px 0 15px; font-size: 1.65rem; line-height: 1.08; letter-spacing: -.04em; }
.pathway-card p { color: var(--muted); line-height: 1.65; }
.pathway-card b { position: absolute; z-index: 1; bottom: 30px; left: 32px; color: var(--blue); font-size: .88rem; }

.process-wrap { display: grid; align-items: start; gap: 70px; grid-template-columns: .85fr 1.15fr; }
.process-list { display: grid; gap: 14px; }
.process-step { display: grid; gap: 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; padding: 24px; background: rgba(255,255,255,.06); grid-template-columns: 48px 1fr; }
.process-step b { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.process-step h3 { margin: 1px 0 7px; color: #fff; }
.process-step p { margin: 0; color: #adc2e6; line-height: 1.6; }
.section--dark { color: #fff; background: linear-gradient(135deg, var(--navy), #082775); }
.section--dark .section-copy { color: #adc2e6; }

.pricing-grid { display: grid; align-items: stretch; gap: 20px; margin-top: 55px; grid-template-columns: repeat(3,1fr); }
.price-card { position: relative; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 26px; padding: 34px; background: #fff; box-shadow: 0 12px 40px rgba(3,18,63,.07); }
.price-card--featured { transform: translateY(-10px); border: 2px solid var(--blue); box-shadow: 0 25px 70px rgba(20,92,255,.2); }
.popular { position: absolute; top: 18px; right: 18px; border-radius: 999px; padding: 7px 10px; color: #fff; background: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-card h3 { margin: 0; font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; }
.price { margin: 22px 0 8px; font-size: 3.1rem; font-weight: 900; letter-spacing: -.06em; }
.price span { color: var(--muted); font-size: .95rem; font-weight: 600; letter-spacing: 0; }
.price-card > p { min-height: 52px; margin: 0; color: var(--muted); line-height: 1.55; }
.price-card ul { display: grid; gap: 12px; margin: 25px 0 30px; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 24px; color: #33425c; font-size: .94rem; line-height: 1.45; }
.price-card li::before { position: absolute; left: 0; color: var(--blue); font-weight: 900; content: "✓"; }
.price-card .btn { margin-top: auto; }
.price-note { margin: 26px 0 0; color: var(--muted); text-align: center; font-size: .84rem; }

.proof-grid { display: grid; align-items: center; gap: 70px; grid-template-columns: 1.08fr .92fr; }
.testimonial-placeholder { position: relative; margin-top: 36px; border: 1px solid var(--line); border-radius: 26px; padding: 34px 34px 34px 88px; background: #fff; box-shadow: 0 18px 55px rgba(3,18,63,.07); }
.quote-mark { position: absolute; top: 23px; left: 28px; color: var(--cyan); font-family: Georgia, serif; font-size: 4.5rem; line-height: 1; }
.testimonial-placeholder p { margin: 0; font-size: 1.18rem; font-weight: 750; line-height: 1.55; }
.testimonial-placeholder span { display: block; margin-top: 12px; color: var(--muted); font-size: .78rem; }
.google-preview { border: 1px solid #d7e3f1; border-radius: 30px; padding: 38px; background: linear-gradient(145deg, #fff, #f2f8ff); box-shadow: var(--shadow); }
.google-preview__top { display: flex; align-items: center; gap: 14px; }
.google-g { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: #4285f4; background: #fff; box-shadow: 0 8px 24px rgba(3,18,63,.12); font-size: 1.65rem; font-weight: 900; }
.google-preview__top strong, .google-preview__top small { display: block; }
.google-preview__top small { margin-top: 3px; color: var(--muted); }
.empty-stars { margin: 34px 0 15px; color: #f5b400; font-size: 2rem; letter-spacing: .12em; }
.google-preview h3 { margin: 0; font-size: 1.55rem; }
.google-preview p { color: var(--muted); line-height: 1.7; }
.verified-note { display: inline-flex; border-radius: 999px; padding: 8px 11px; color: #236a57; background: #e8fff6; font-size: .75rem; font-weight: 800; }

.faq-wrap { display: grid; align-items: start; gap: 70px; grid-template-columns: .8fr 1.2fr; }
.faq-list { display: grid; gap: 13px; }
.faq-list details { border: 1px solid var(--line); border-radius: 20px; padding: 0 24px; background: #fff; box-shadow: 0 10px 30px rgba(3,18,63,.05); }
.faq-list summary { cursor: pointer; padding: 22px 35px 22px 0; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { float: right; margin-right: -28px; color: var(--blue); content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -3px 0 24px; color: var(--muted); line-height: 1.7; }

.inner-hero { position: relative; overflow: hidden; padding: 190px 0 105px; color: #fff; background: radial-gradient(circle at 82% 30%, rgba(20,200,255,.22), transparent 26%), linear-gradient(125deg, #020a29, #062b93); }
.inner-hero::after { position: absolute; right: -150px; bottom: -260px; width: 560px; height: 560px; border: 1px solid rgba(20,200,255,.32); border-radius: 50%; box-shadow: 0 0 0 70px rgba(20,92,255,.06), 0 0 0 150px rgba(20,92,255,.04); content: ""; }
.inner-hero__grid { position: relative; z-index: 1; display: grid; align-items: center; gap: 70px; grid-template-columns: 1.15fr .85fr; }
.inner-hero h1 { max-width: 890px; margin: 0; font-size: clamp(3.2rem, 5.6vw, 6rem); line-height: .98; letter-spacing: -.065em; }
.inner-hero p:not(.eyebrow) { max-width: 720px; margin: 26px 0 0; color: #c6d8f4; font-size: 1.1rem; line-height: 1.75; }
.inner-hero--compact { padding-bottom: 90px; }
.hero-network, .hero-brand-motion, .hero-web-motion, .hero-social-motion, .hero-seo-motion, .hero-people-motion, .hero-plan-motion { position: relative; width: min(430px, 100%); min-height: 390px; margin-inline: auto; }

.hero-network { display: grid; place-items: center; }
.hero-network::before, .hero-network::after { position: absolute; width: 78%; height: 1px; background: linear-gradient(90deg, transparent, rgba(20,200,255,.65), transparent); content: ""; }.hero-network::after { transform: rotate(90deg); }
.hero-network strong { position: relative; z-index: 3; display: grid; width: 126px; height: 126px; place-items: center; border-radius: 30px; color: #fff; background: linear-gradient(145deg, rgba(20,200,255,.3), rgba(20,92,255,.65)); box-shadow: 0 0 0 12px rgba(255,255,255,.05), 0 25px 60px rgba(0,0,0,.25); font-size: 1.3rem; animation: networkPulse 2.8s ease-in-out infinite; }
.hero-network span { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 10px 15px; color: #d8ebff; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); font-size: .75rem; font-weight: 850; animation: nodeDrift 4s ease-in-out infinite; }.hero-network span:nth-of-type(1) { top: 12%; left: 9%; }.hero-network span:nth-of-type(2) { top: 9%; right: 8%; animation-delay: -.8s; }.hero-network span:nth-of-type(3) { right: 3%; bottom: 16%; animation-delay: -1.6s; }.hero-network span:nth-of-type(4) { bottom: 12%; left: 5%; animation-delay: -2.4s; }
.hero-network i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); animation: dataBlink 1.8s ease-in-out infinite; }.hero-network i:nth-of-type(1) { top: 28%; left: 35%; }.hero-network i:nth-of-type(2) { top: 31%; right: 31%; animation-delay: -.4s; }.hero-network i:nth-of-type(3) { right: 28%; bottom: 30%; animation-delay: -.8s; }.hero-network i:nth-of-type(4) { bottom: 29%; left: 30%; animation-delay: -1.2s; }

.hero-brand-motion { perspective: 900px; }
.motion-card { position: absolute; display: grid; border: 1px solid rgba(255,255,255,.2); border-radius: 26px; color: #fff; background: linear-gradient(145deg, rgba(255,255,255,.17), rgba(255,255,255,.05)); box-shadow: 0 25px 70px rgba(0,0,0,.24); backdrop-filter: blur(16px); animation: brandFloat 5s ease-in-out infinite; }
.motion-card small { color: #aecaef; font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.motion-card--type { top: 15px; left: 8px; width: 190px; height: 210px; place-content: center; gap: 22px; font-size: 5rem; font-weight: 900; letter-spacing: -.12em; transform: rotate(-6deg); }
.motion-card--color { top: 52px; right: 0; width: 205px; height: 165px; align-content: center; gap: 11px; padding: 25px; transform: rotate(5deg); animation-delay: -1.6s; }.motion-card--color i { height: 18px; border-radius: 999px; background: var(--cyan); }.motion-card--color i:nth-child(2) { width: 78%; background: var(--blue); }.motion-card--color i:nth-child(3) { width: 55%; background: #fff; }
.motion-card--message { right: 54px; bottom: 5px; width: 260px; height: 142px; place-content: center; font-size: 1.4rem; line-height: 1.2; transform: rotate(-2deg); animation-delay: -3.2s; }.motion-card--message strong { color: var(--cyan); font-size: 2rem; }

.hero-web-motion { min-height: 330px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 28px; background: rgba(255,255,255,.08); box-shadow: 0 30px 80px rgba(0,0,0,.28); backdrop-filter: blur(16px); animation: webWindowFloat 5s ease-in-out infinite; }
.hero-web-bar { display: flex; align-items: center; gap: 8px; padding: 14px 17px; border-bottom: 1px solid rgba(255,255,255,.14); }.hero-web-bar i { width: 9px; height: 9px; border-radius: 50%; background: #ff6c7b; }.hero-web-bar i:nth-child(2) { background: #ffbd45; }.hero-web-bar i:nth-child(3) { background: #4bd584; }.hero-web-bar span { flex: 1; margin-left: 8px; border-radius: 999px; padding: 7px; color: #afc8ee; background: rgba(255,255,255,.07); font-size: .64rem; text-align: center; }
.hero-web-page { position: relative; padding: 38px; }.hero-web-page > b { display: block; width: 38%; height: 13px; border-radius: 999px; background: var(--cyan); }.hero-web-page > strong { display: block; width: 86%; height: 34px; margin-top: 15px; border-radius: 8px; background: rgba(255,255,255,.88); }.hero-web-page > strong:nth-of-type(2) { width: 62%; }.hero-web-page > span { display: block; width: 120px; height: 38px; margin-top: 25px; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 10px 30px rgba(20,200,255,.25); }
.hero-web-page::after { display: block; height: 68px; margin-top: 35px; border-radius: 14px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.09) 0 30%, transparent 30% 35%); content: ""; }
.hero-web-cursor { position: absolute; top: 120px; left: 60%; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--navy); background: #fff; box-shadow: 0 8px 25px rgba(0,0,0,.22); animation: cursorTour 5s ease-in-out infinite; }

.hero-social-motion { display: grid; place-items: center; }
.social-phone { width: 235px; overflow: hidden; border: 7px solid rgba(255,255,255,.9); border-radius: 34px; color: var(--ink); background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.32); animation: phoneFloat 4.5s ease-in-out infinite; }
.social-phone__top { display: flex; align-items: center; gap: 9px; padding: 15px; font-size: .72rem; font-weight: 850; }.social-phone__top i { width: 25px; height: 25px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.social-post-art { height: 205px; background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.28), transparent 20%), linear-gradient(145deg, var(--blue), #722cff 55%, var(--cyan)); }
.social-post-lines { display: grid; gap: 8px; padding: 15px; }.social-post-lines b { height: 8px; border-radius: 999px; background: #dce6f1; }.social-post-lines b:last-child { width: 64%; }
.social-reaction { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 10px 14px; color: #fff; background: rgba(255,255,255,.12); box-shadow: 0 15px 35px rgba(0,0,0,.2); backdrop-filter: blur(12px); font-size: .78rem; font-weight: 850; animation: reactionPop 3.5s ease-in-out infinite; }.social-reaction--one { top: 18%; right: 2%; }.social-reaction--two { bottom: 20%; left: 0; animation-delay: -1.7s; }

.hero-seo-motion { display: grid; align-content: center; gap: 14px; }
.seo-query-motion { display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 16px 20px; color: #d8e8ff; background: rgba(255,255,255,.08); box-shadow: 0 20px 50px rgba(0,0,0,.18); }.seo-query-motion b { color: var(--cyan); }
.seo-result-motion { display: flex; align-items: center; gap: 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 18px; color: #fff; background: rgba(255,255,255,.11); backdrop-filter: blur(14px); animation: resultRise 4s ease-in-out infinite; }.seo-result-motion i { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; color: var(--navy); background: var(--cyan); font-style: normal; font-weight: 900; }.seo-result-motion span, .seo-result-motion strong, .seo-result-motion small { display: block; }.seo-result-motion small { margin-top: 4px; color: #adc7eb; }.seo-result-motion--two { opacity: .62; transform: scale(.95); animation-delay: -2s; }.seo-result-motion--two i { background: #b6c5dc; }
.seo-arrow { position: absolute; right: 18px; bottom: 68px; display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #3bffbd, #00a7ff); box-shadow: 0 12px 34px rgba(0,220,180,.28); font-size: 1.6rem; font-weight: 900; animation: seoArrow 2.4s ease-in-out infinite; }

.hero-people-motion { display: grid; align-content: center; gap: 13px; perspective: 700px; }
.hero-people-motion > div { display: grid; align-items: center; gap: 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; padding: 16px 20px; color: #fff; background: rgba(255,255,255,.09); box-shadow: 0 18px 45px rgba(0,0,0,.18); grid-template-columns: 50px 1fr; animation: peopleSlide 5s ease-in-out infinite; }.hero-people-motion > div:nth-child(2) { margin-left: 42px; animation-delay: -1.6s; }.hero-people-motion > div:nth-child(3) { margin-left: 84px; animation-delay: -3.2s; }.hero-people-motion b { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--cyan)); }.hero-people-motion span, .hero-people-motion small { display: block; }.hero-people-motion small { margin-top: 5px; color: #aac2e8; font-size: .69rem; }

.hero-plan-motion { display: flex; min-height: 350px; align-items: end; justify-content: center; gap: 15px; padding-bottom: 20px; }
.hero-plan-motion > div { display: flex; width: 116px; height: 190px; flex-direction: column; justify-content: end; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; padding: 18px; color: #fff; background: rgba(255,255,255,.08); box-shadow: 0 22px 60px rgba(0,0,0,.22); animation: planLift 4.5s ease-in-out infinite; }.hero-plan-motion > div:nth-child(2) { height: 255px; background: linear-gradient(160deg, rgba(20,200,255,.3), rgba(20,92,255,.42)); animation-delay: -1.5s; }.hero-plan-motion > div:nth-child(3) { height: 315px; animation-delay: -3s; }.hero-plan-motion span { color: #b9ceef; font-size: .68rem; font-weight: 800; }.hero-plan-motion b { margin-top: 7px; font-size: 1.5rem; }.hero-plan-motion i { display: block; height: 5px; margin-top: 15px; border-radius: 999px; background: var(--cyan); }

@keyframes networkPulse { 50% { transform: scale(1.06); box-shadow: 0 0 0 20px rgba(20,200,255,.04), 0 30px 75px rgba(0,0,0,.3); } }
@keyframes nodeDrift { 50% { transform: translateY(-10px); } }
@keyframes dataBlink { 50% { opacity: .25; transform: scale(.6); } }
@keyframes brandFloat { 50% { transform: translateY(-13px) rotate(0deg); } }
@keyframes webWindowFloat { 50% { transform: translateY(-9px) rotateX(2deg); } }
@keyframes cursorTour { 0%,100% { transform: translate(0,0); } 40% { transform: translate(-95px,55px); } 70% { transform: translate(35px,105px); } }
@keyframes phoneFloat { 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes reactionPop { 50% { transform: translateY(-10px) scale(1.06); } }
@keyframes resultRise { 50% { transform: translateY(-8px); } }
@keyframes seoArrow { 50% { transform: translateY(-14px); } }
@keyframes peopleSlide { 50% { transform: translateX(-14px) rotateY(-3deg); } }
@keyframes planLift { 50% { transform: translateY(-12px); } }
.stats-band { position: relative; z-index: 2; margin-top: -1px; color: #fff; background: #07194d; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.stats-grid div { padding: 34px; border-right: 1px solid rgba(255,255,255,.12); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong { display: block; color: var(--cyan); font-size: 1.65rem; }
.stats-grid span { display: block; margin-top: 7px; color: #aec3e4; font-size: .82rem; font-weight: 700; }
.detail-grid .service-card { min-height: 300px; }
.signature-section { overflow: hidden; }
.ecosystem, .brand-lab, .web-showcase, .social-studio, .seo-lab { display: grid; align-items: center; gap: 80px; grid-template-columns: 1fr 1fr; }

.ecosystem-map { position: relative; display: grid; width: min(480px, 100%); aspect-ratio: 1; place-items: center; margin-inline: auto; border: 1px dashed #9cc8ff; border-radius: 50%; background: radial-gradient(circle, rgba(20,200,255,.13), transparent 61%); }
.ecosystem-map::before, .ecosystem-map::after { position: absolute; inset: 17%; border: 1px solid #d0e5fb; border-radius: 50%; content: ""; }
.ecosystem-map::after { inset: 33%; background: #fff; box-shadow: 0 20px 60px rgba(3,18,63,.16); }
.ecosystem-map > strong { position: relative; z-index: 2; width: 110px; color: var(--navy); font-size: 1.25rem; line-height: 1.05; text-align: center; }
.ecosystem-map .node { position: absolute; z-index: 3; display: grid; min-width: 82px; height: 42px; place-items: center; border: 1px solid #b9d8ff; border-radius: 999px; color: var(--blue); background: #fff; box-shadow: 0 10px 28px rgba(3,18,63,.1); font-size: .75rem; font-weight: 850; }
.node--one { top: 2%; left: 39%; }.node--two { top: 31%; right: -3%; }.node--three { right: 10%; bottom: 9%; }.node--four { bottom: 9%; left: 8%; }.node--five { top: 31%; left: -5%; }

.brand-board { position: relative; overflow: hidden; border: 1px solid #c9ddf4; border-radius: 30px; padding: 34px; background: #fff; box-shadow: var(--shadow); }
.brand-board::after { position: absolute; right: -60px; bottom: -60px; width: 180px; height: 180px; border-radius: 50%; background: rgba(20,200,255,.13); content: ""; }
.brand-board__title span, .brand-board__title strong { display: block; }
.brand-board__title span { color: var(--blue); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.brand-board__title strong { margin-top: 11px; font-size: 1.35rem; }
.swatches { display: grid; gap: 10px; margin: 32px 0; grid-template-columns: repeat(4,1fr); }
.swatches i { height: 86px; border-radius: 17px; background: var(--navy); }
.swatches i:nth-child(2) { background: var(--blue); }.swatches i:nth-child(3) { background: var(--cyan); }.swatches i:nth-child(4) { background: var(--ice); }
.type-sample { display: grid; align-items: center; gap: 24px; grid-template-columns: auto 1fr; }
.type-sample > b { color: var(--navy); font-size: 4.2rem; line-height: 1; letter-spacing: -.09em; }
.type-sample span { color: var(--muted); line-height: 1.65; }
.type-sample strong { color: var(--ink); }

.browser-frame { overflow: hidden; border: 1px solid #c9ddf4; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 14px 17px; border-bottom: 1px solid var(--line); background: #f3f7fb; }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #ff6d7a; }.browser-bar i:nth-child(2) { background: #ffbd45; }.browser-bar i:nth-child(3) { background: #4bd584; }
.browser-bar span { flex: 1; margin-left: 10px; border-radius: 999px; padding: 7px 12px; color: #8090a6; background: #fff; font-size: .68rem; text-align: center; }
.browser-canvas { min-height: 360px; padding: 55px 42px 32px; color: #fff; background: radial-gradient(circle at 88% 20%, rgba(20,200,255,.26), transparent 30%), linear-gradient(135deg, #03123f, #0a47c9); }
.browser-canvas small { color: var(--cyan); font-weight: 900; letter-spacing: .12em; }
.browser-canvas h3 { max-width: 400px; margin: 20px 0; font-size: 2.4rem; line-height: 1.05; letter-spacing: -.05em; }
.browser-cta { width: 128px; height: 35px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), #fff); }
.browser-metrics { display: grid; gap: 10px; margin-top: 55px; grid-template-columns: repeat(3,1fr); }
.browser-metrics span { height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.08); }

.content-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; color: var(--muted); font-size: .8rem; font-weight: 750; }
.content-legend span { display: inline-flex; align-items: center; gap: 7px; }.content-legend i { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); }.content-legend span:nth-child(2) i { background: var(--cyan); }.content-legend span:nth-child(3) i { background: #7c65ff; }
.content-calendar { display: grid; gap: 10px; padding: 22px; border: 1px solid #c9ddf4; border-radius: 28px; background: #fff; box-shadow: var(--shadow); grid-template-columns: repeat(5,1fr); }
.content-calendar > div { display: grid; align-content: start; gap: 10px; min-height: 310px; border-radius: 16px; padding: 13px 8px; background: #f5f9fe; text-align: center; }
.content-calendar b { color: var(--muted); font-size: .75rem; }
.content-calendar span { height: 58px; border-radius: 11px; background: linear-gradient(145deg, #e0edff, #bcd5ff); }
.content-calendar div:nth-child(2) span:nth-child(3), .content-calendar div:nth-child(5) span:nth-child(2) { background: linear-gradient(145deg, #d5fbff, #8be6ff); }
.content-calendar div:nth-child(3) span:nth-child(4), .content-calendar div:nth-child(4) span:nth-child(3) { background: linear-gradient(145deg, #e3ddff, #b7a9ff); }

.search-demo { border: 1px solid #c9ddf4; border-radius: 28px; padding: 28px; background: #fff; box-shadow: var(--shadow); }
.search-query { display: flex; align-items: center; justify-content: space-between; border: 1px solid #d6e2ef; border-radius: 999px; padding: 14px 18px; color: #506079; box-shadow: 0 4px 16px rgba(3,18,63,.06); }
.search-query b { color: var(--blue); font-size: 1.3rem; }
.search-result { margin: 26px 3px; border-left: 3px solid var(--blue); padding-left: 18px; }
.search-result small { color: #4a846d; }.search-result h3 { margin: 8px 0; color: #1749bd; font-size: 1.16rem; }.search-result p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.6; }
.ranking-bars { display: grid; gap: 12px; }
.ranking-bars span { position: relative; display: flex; height: 35px; align-items: center; overflow: hidden; border-radius: 9px; padding-left: 12px; color: #fff; background: #e7eff8; font-size: .72rem; font-weight: 850; }
.ranking-bars span::before { position: absolute; z-index: 0; inset: 0 auto 0 0; width: var(--rank); background: linear-gradient(90deg, var(--blue), var(--cyan)); content: ""; }
.ranking-bars span { text-shadow: 0 1px 4px rgba(3,18,63,.4); }.ranking-bars span::after { position: relative; content: attr(data-label); }

.manifesto { text-align: center; }
.manifesto blockquote { max-width: 1020px; margin: 28px auto 50px; color: var(--navy); font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 850; line-height: 1.04; letter-spacing: -.06em; }
.manifesto-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.manifesto-notes span { border: 1px solid var(--line); border-radius: 999px; padding: 12px 17px; color: var(--blue); background: #f6faff; font-size: .78rem; font-weight: 850; }
.team-section { position: relative; }
.team-section::before { position: absolute; top: 5%; right: 0; width: 38%; height: 90%; opacity: .45; background: radial-gradient(circle, rgba(20,200,255,.2), transparent 68%); content: ""; }
.team-grid { position: relative; display: grid; align-items: end; gap: 20px; margin-top: 52px; grid-template-columns: repeat(3,1fr); }
.team-card { min-height: 570px; border: 1px solid #cddff2; border-radius: 28px; padding: 22px 22px 30px; background: linear-gradient(160deg, #fff, #f2f8ff); box-shadow: 0 18px 55px rgba(3,18,63,.08); }
.team-card:nth-child(2), .team-card:nth-child(3) { min-height: 570px; }
.team-avatar { display: grid; overflow: hidden; width: 100%; height: 350px; place-items: end center; margin-bottom: 26px; border: 1px solid #a9ccf6; border-radius: 22px; color: #fff; background: radial-gradient(circle at 50% 18%, rgba(20,200,255,.3), transparent 34%), linear-gradient(145deg, #0a5aff, #03123f); box-shadow: 0 20px 40px rgba(20,92,255,.18); }
.team-avatar img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.team-card:nth-child(2) .team-avatar img { transform: scale(1.06); transform-origin: center bottom; }
.team-card > span { color: var(--blue); font-size: .73rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.team-card h3 { margin: 12px 0 9px; font-size: 1.55rem; letter-spacing: -.04em; }.team-card p { margin: 0; color: var(--muted); }
.team-future { position: relative; margin-top: 22px; border: 1px dashed #a9c9ed; border-radius: 22px; padding: 24px 28px; color: var(--muted); background: rgba(255,255,255,.65); }.team-future span { color: var(--navy); font-weight: 850; }.team-future p { margin: 7px 0 0; }

.service-page { background: linear-gradient(180deg, #fff 0%, #f7fbff 28%, #fff 58%, #eff7ff 100%); }
.service-page--brand-building { background: linear-gradient(180deg, #fff 0%, #f1f8ff 32%, #fff 66%, #eef5ff 100%); }
.service-page--web-design { background: linear-gradient(180deg, #fff, #eef6ff 42%, #fff 78%); }
.service-page--social-media { background: linear-gradient(180deg, #fff, #f8f5ff 40%, #effaff 100%); }
.service-page--seo { background: linear-gradient(180deg, #fff, #eefaff 45%, #fff 78%); }
.service-page > .section:not(.section--dark):not(.section--soft) { background: transparent; }

.detail-grid--brand-building { grid-template-columns: repeat(2,1fr); }.detail-grid--brand-building .service-card:nth-child(1), .detail-grid--brand-building .service-card:nth-child(6) { min-height: 360px; background: linear-gradient(145deg, #fff, #edf6ff); }
.detail-grid--web-design .service-card:nth-child(2) { grid-column: span 2; background: linear-gradient(135deg, #071e5f, #145cff); }.detail-grid--web-design .service-card:nth-child(2) h3, .detail-grid--web-design .service-card:nth-child(2) p { color: #fff; }.detail-grid--web-design .service-card:nth-child(2) .service-index { color: var(--cyan); }
.detail-grid--social-media { grid-template-columns: repeat(2,1fr); }.detail-grid--social-media .service-card { min-height: 230px; }.detail-grid--seo .service-card:nth-child(1), .detail-grid--seo .service-card:nth-child(4) { transform: translateY(22px); }
.journey-grid { display: grid; gap: 16px; margin-top: 55px; grid-template-columns: repeat(4,1fr); }
.journey-grid article { border: 1px solid rgba(255,255,255,.13); border-radius: 24px; padding: 27px; background: rgba(255,255,255,.06); }
.journey-grid b { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.journey-grid h3 { margin: 42px 0 10px; }
.journey-grid p { margin: 0; color: #adc2e6; line-height: 1.6; }
.prose { line-height: 1.75; }

.booking-grid { display: grid; align-items: start; gap: 30px; grid-template-columns: 1fr; }
.booking-panel, .lead-form { border: 1px solid var(--line); border-radius: 28px; padding: 36px; background: #fff; box-shadow: 0 18px 60px rgba(3,18,63,.08); }
.booking-panel { padding: clamp(26px, 4vw, 52px); }
.booking-panel h2, .lead-form h2 { margin: 0; font-size: 2rem; letter-spacing: -.04em; }
.booking-panel > p:not(.eyebrow), .lead-form > p { color: var(--muted); line-height: 1.7; }
.calendar-placeholder { margin-top: 28px; border: 1px solid var(--line); border-radius: 20px; padding: 22px; background: #f7fbff; }
.booking-embed { display: block; width: 100%; min-height: 680px; margin-top: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.booking-link { display: inline-flex; margin-top: 20px; }
.lead-form { width: min(100%, 760px); margin-inline: auto; }
.home-booking { background: linear-gradient(135deg, #031343, #0a43c7); }
.home-booking__intro { max-width: 820px; margin-bottom: 32px; }
.home-booking .eyebrow { color: var(--cyan); }
.home-booking .section-title { color: #fff; }
.home-booking .section-copy { color: #c5d7f5; }
.home-booking__card { border: 1px solid rgba(255,255,255,.16); border-radius: 30px; padding: clamp(18px, 3vw, 34px); background: rgba(255,255,255,.08); box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.home-booking__card .booking-embed { min-height: 560px; margin-top: 0; }
.home-booking__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; color: #c5d7f5; font-size: .84rem; }
.calendar-days { display: grid; gap: 7px; grid-template-columns: repeat(5,1fr); }
.calendar-days span { display: grid; height: 42px; place-items: center; border-radius: 12px; color: var(--blue); background: #fff; font-weight: 850; }
.time-slots { display: grid; gap: 9px; margin-top: 18px; }
.time-slots button { border: 1px solid #bad6ff; border-radius: 12px; padding: 13px; color: var(--blue); background: #fff; font-weight: 800; }
.integration-note { display: block; margin-top: 18px; color: var(--muted); font-size: .75rem; text-align: center; }
.lead-form { display: grid; gap: 17px; }
.lead-form label { display: grid; gap: 8px; color: #263755; font-size: .83rem; font-weight: 800; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid #cadbef; border-radius: 13px; padding: 14px 15px; color: var(--ink); background: #fbfdff; font: inherit; outline: none; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,92,255,.1); }
.lead-form textarea { resize: vertical; }
.lead-form small { color: var(--muted); text-align: center; }

.payment-hero { position: relative; overflow: hidden; padding: 190px 0 95px; color: #fff; background: radial-gradient(circle at 78% 28%, rgba(20,200,255,.3), transparent 23%), linear-gradient(125deg, #020a29, #062c99); }
.payment-hero::after { position: absolute; right: -170px; bottom: -340px; width: 650px; height: 650px; border: 1px solid rgba(20,200,255,.25); border-radius: 50%; box-shadow: 0 0 0 70px rgba(20,92,255,.07), 0 0 0 150px rgba(20,92,255,.05); content: ""; }
.payment-hero__inner { position: relative; z-index: 1; display: grid; align-items: end; gap: 70px; grid-template-columns: 1fr auto; }
.payment-hero h1 { max-width: 870px; margin: 0; font-size: clamp(3.2rem, 5.7vw, 6rem); line-height: .96; letter-spacing: -.065em; }
.payment-hero p:not(.eyebrow) { max-width: 760px; margin: 24px 0 0; color: #c6d8f4; font-size: 1.08rem; line-height: 1.7; }
.secure-badge { display: flex; align-items: center; gap: 14px; min-width: 260px; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; padding: 18px; background: rgba(255,255,255,.1); backdrop-filter: blur(14px); }
.secure-badge > b { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; color: #032353; background: var(--cyan); }
.secure-badge span, .secure-badge small { display: block; }.secure-badge span { color: #fff; font-size: .88rem; font-weight: 850; }.secure-badge small { margin-top: 4px; color: #bcd2f2; font-size: .7rem; font-weight: 600; }
.checkout-layout { display: grid; align-items: start; gap: 34px; grid-template-columns: 1.08fr .92fr; }
.checkout-selector, .order-summary { border: 1px solid var(--line); border-radius: 30px; padding: 38px; background: #fff; box-shadow: 0 20px 65px rgba(3,18,63,.09); }
.checkout-selector h2, .order-summary h2 { margin: 0 0 28px; font-size: 2rem; letter-spacing: -.045em; }
.checkout-plans { display: grid; gap: 13px; }
.checkout-plan { position: relative; display: grid; align-items: center; gap: 18px; cursor: pointer; border: 1px solid #cadbef; border-radius: 20px; padding: 20px; grid-template-columns: auto 1fr auto; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.checkout-plan:hover { transform: translateY(-2px); border-color: #8eb9f6; box-shadow: 0 12px 30px rgba(20,92,255,.09); }
.checkout-plan:has(input:checked) { border: 2px solid var(--blue); padding: 19px; background: #f5f9ff; box-shadow: 0 12px 35px rgba(20,92,255,.13); }
.checkout-plan input { width: 19px; height: 19px; accent-color: var(--blue); }
.checkout-plan span, .checkout-plan small { display: block; }.checkout-plan b { color: var(--navy); font-size: 1.03rem; }.checkout-plan span small { margin-top: 6px; color: var(--muted); line-height: 1.45; }.checkout-plan > strong { color: var(--navy); font-size: 1.55rem; }.checkout-plan > strong small { color: var(--muted); font-size: .65rem; font-weight: 650; text-align: right; }
.checkout-help { margin: 23px 0 0; color: var(--muted); font-size: .84rem; }.checkout-help a { color: var(--blue); font-weight: 800; }
.order-summary { position: sticky; top: 130px; }
.summary-row, .summary-total { display: flex; align-items: center; justify-content: space-between; gap: 25px; border-bottom: 1px solid var(--line); padding: 17px 0; color: var(--muted); }
.summary-row strong { color: var(--navy); }.summary-total { align-items: flex-end; border-bottom: 0; padding: 28px 0; }.summary-total span small { display: block; max-width: 220px; margin-top: 5px; color: #8492a8; font-size: .68rem; }.summary-total strong { color: var(--navy); font-size: 2.4rem; letter-spacing: -.05em; }
.terms-check { display: grid; align-items: start; gap: 11px; border-radius: 14px; padding: 15px; color: #526079; background: #f4f8fd; font-size: .76rem; line-height: 1.5; grid-template-columns: auto 1fr; }.terms-check input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--blue); }
.checkout-submit { width: 100%; justify-content: center; margin-top: 18px; }.checkout-submit:disabled { cursor: not-allowed; opacity: .45; transform: none; }.checkout-submit span { margin-left: 7px; }
.checkout-status { margin: 14px 0 0; border-radius: 12px; padding: 12px; color: #607089; background: #f4f7fb; font-size: .72rem; line-height: 1.5; text-align: center; }.checkout-status.is-alert { color: #7a5200; background: #fff4ce; }
.payment-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0 16px; color: #7b879a; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.payment-divider::before, .payment-divider::after { height: 1px; flex: 1; background: var(--line); content: ""; }
.paypal-subscription { min-height: 48px; }
.paypal-loading, .paypal-note { margin: 0; color: #65738a; font-size: .72rem; line-height: 1.5; text-align: center; }
.paypal-note { margin-top: 10px; }
.checkout-status.is-success { color: #12653a; background: #eaf9f0; }
.payment-trust { display: grid; gap: 9px; margin-top: 18px; color: #5d6c82; font-size: .72rem; grid-template-columns: repeat(3,1fr); }.payment-trust span { text-align: center; }
.payment-steps { padding: 80px 0; color: #fff; background: linear-gradient(125deg, #020a29, #082b87); }
.payment-step-grid { display: grid; gap: 18px; margin-top: 35px; grid-template-columns: repeat(3,1fr); }.payment-step-grid article { border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: 26px; background: rgba(255,255,255,.06); }.payment-step-grid b { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); }.payment-step-grid h3 { margin: 32px 0 9px; }.payment-step-grid p { margin: 0; color: #aec4e7; line-height: 1.6; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

.cta { padding: 90px 0; color: #fff; background: linear-gradient(105deg, #082b99, #0a5aff 58%, #00a9ea); }
.cta-inner { display: grid; align-items: center; gap: 50px; grid-template-columns: 1fr auto; }
.cta h2 { max-width: 790px; margin: 0; font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: 1.02; letter-spacing: -.055em; }
.cta p { margin: 18px 0 0; color: #d8ecff; font-size: 1.05rem; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-phone { color: #e2f4ff; font-size: .9rem; text-align: center; }

.site-footer { padding: 48px 0 28px; color: #9fb1d5; background: #020a25; }
.footer-grid { display: grid; align-items: start; gap: 44px; grid-template-columns: 1fr auto auto; }
.footer-brand { max-width: 450px; }
.brand--footer { margin-bottom: 22px; }
.footer-brand p { margin: 0; line-height: 1.7; }
.footer-col h3 { margin: 0 0 15px; color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; margin: 9px 0; }
.footer-col a:hover { color: #fff; }
.social-links { display: flex; gap: 9px; margin-top: 17px; }
.social-links a { display: grid; width: 34px; height: 34px; place-items: center; margin: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; font-weight: 850; }
.social-links a:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 25px; font-size: .8rem; }

@media (max-width: 980px) {
  .nav-links { gap: 14px; font-size: .82rem; }
  .nav-links .btn { padding-inline: 17px; }
  .hero-inner { grid-template-columns: 1fr; padding: 160px 0 100px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; }
  .trust-inner, .services-grid, .pathway-grid { grid-template-columns: repeat(2,1fr); }
  .process-wrap { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; }
  .proof-grid, .faq-wrap, .inner-hero__grid, .booking-grid, .payment-hero__inner, .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .journey-grid { grid-template-columns: repeat(2,1fr); }
  .ecosystem, .brand-lab, .web-showcase, .social-studio, .seo-lab { gap: 45px; grid-template-columns: 1fr; }
  .detail-grid--web-design .service-card:nth-child(2) { grid-column: auto; }
}

@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .container { width: min(100% - 28px, 1160px); }
  .nav-toggle { display: grid; place-items: center; }
  .nav { min-height: 86px; }
  .language-switch { position: absolute; top: 5px; right: 70px; }
  .nav { min-height: 108px; padding-top: 20px; }
  .brand-mark { width: 46px; height: 50px; border-radius: 15px 15px 18px 18px; }
  .brand-logo { width: 220px; height: 64px; }
  .brand-name strong { font-size: 1.2rem; }
  .brand-name small { font-size: .5rem; }
  .nav-links { position: fixed; inset: 108px 0 auto; display: none; align-items: stretch; gap: 0; padding: 16px; color: var(--navy); background: #fff; box-shadow: 0 25px 45px rgba(0,0,0,.18); }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 15px; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 10px; color: #fff; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 5rem); }
  .hero-inner { padding-top: 142px; }
  .trust-strip { margin-top: -25px; }
  .trust-inner, .services-grid, .pathway-grid, .stats-grid, .journey-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .inner-hero { padding: 150px 0 76px; }
  .stats-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stats-grid div:last-child { border-bottom: 0; }
  .booking-panel, .lead-form { padding: 25px; }
  .booking-embed { min-height: 620px; }
  .home-booking__card .booking-embed { min-height: 520px; }
  .home-booking__footer { align-items: flex-start; flex-direction: column; }
  .content-calendar { overflow-x: auto; grid-template-columns: repeat(5, minmax(90px, 1fr)); }
  .ecosystem-map { width: 90%; }
  .detail-grid--brand-building, .detail-grid--social-media { grid-template-columns: 1fr; }
  .detail-grid--seo .service-card:nth-child(1), .detail-grid--seo .service-card:nth-child(4) { transform: none; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card, .team-card:nth-child(2), .team-card:nth-child(3) { min-height: auto; }
  .hero-network, .hero-brand-motion, .hero-web-motion, .hero-social-motion, .hero-seo-motion, .hero-people-motion, .hero-plan-motion { min-height: 330px; }
  .hero-people-motion > div:nth-child(2), .hero-people-motion > div:nth-child(3) { margin-left: 0; }
  .payment-hero { padding: 155px 0 75px; }
  .checkout-selector, .order-summary { padding: 25px; }
  .checkout-plan { grid-template-columns: auto 1fr; }.checkout-plan > strong { grid-column: 2; }.checkout-plan > strong small { display: inline; margin-left: 3px; }
  .payment-trust, .payment-step-grid { grid-template-columns: 1fr; }.payment-trust span { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
