/* ═══════════════════════════════════════════════
   DRAFTLERS — Design Agency
   styles.css
═══════════════════════════════════════════════ */

/* ── THEME VARIABLES ── */
[data-theme="dark"] {
  --bg:       #0d1318;
  --bg2:      #121c23;
  --bg3:      #0f1921;
  --border:   #1f3040;
  --text:     #e6edf2;
  --text2:    #7a9aad;
  --accent:   #5B7F95;
  --accent2:  #7AABCA;
  --accent3:  #2C3E4A;
  --nav-blur: rgba(13,19,24,0.94);
  --shadow-c: rgba(91,127,149,0.22);
}
[data-theme="light"] {
  --bg:       #eef4f7;
  --bg2:      #ffffff;
  --bg3:      #e0eaef;
  --border:   #c0d4de;
  --text:     #152030;
  --text2:    #4d6e80;
  --accent:   #3a6a82;
  --accent2:  #5B7F95;
  --accent3:  #1e4a60;
  --nav-blur: rgba(238,244,247,0.96);
  --shadow-c: rgba(58,106,130,0.16);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
  transition: background .45s, color .45s;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: .24;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: .4;
  transition: width .25s, height .25s;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 400;
  width: 48px; height: 48px;
  background: var(--accent); border: none; cursor: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .2s, box-shadow .2s;
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--accent2); box-shadow: 0 8px 24px var(--shadow-c); }
.back-to-top svg { color: #fff; }

/* ── NAV ── */
.nav-outer {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav-outer.scrolled { border-color: var(--border); background: var(--nav-blur); }

nav {
  max-width: 1400px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  transition: border-color .3s;
}
.nav-outer.scrolled nav { border-color: var(--border); }

.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-fallback {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  letter-spacing: 4px; color: var(--text);
}
.logo-fallback span { color: var(--accent); }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text2); text-decoration: none;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; transition: color .2s; font-weight: 400;
}
.nav-links a:hover { color: var(--text); }

/* hamburger — mobile only */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text2); transition: transform .3s, opacity .3s, background .3s;
}
.nav-hamburger:hover span { background: var(--accent); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed; top: 65px; left: 0; right: 0; z-index: 490;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.nav-drawer.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.nav-drawer ul { list-style: none; padding: 8px 0; }
.nav-drawer ul li a, .nav-drawer ul li button {
  display: block; width: 100%; padding: 14px 24px;
  color: var(--text2); text-decoration: none;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  background: transparent; border: none; text-align: left;
  cursor: none; transition: color .2s, background .2s;
  font-family: 'Inter', sans-serif;
}
.nav-drawer ul li a:hover, .nav-drawer ul li button:hover {
  color: var(--accent); background: var(--bg3);
}

/* Nav CTA button */
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 20px; font-weight: 600 !important;
  letter-spacing: 1.5px !important; font-size: 10px !important;
  font-family: 'Inter', sans-serif !important;
  text-transform: uppercase !important;
  border: none !important; cursor: none;
  transition: background .2s, box-shadow .2s !important;
}
.nav-cta:hover { background: var(--accent2) !important; box-shadow: 0 8px 24px var(--shadow-c) !important; }

/* Theme toggle */
.theme-btn {
  background: transparent; border: 1px solid var(--border);
  padding: 7px 13px; cursor: none;
  display: flex; align-items: center; gap: 7px;
  transition: border-color .3s, background .3s;
}
.theme-btn:hover { border-color: var(--accent); background: var(--bg3); }
.t-icon { display: flex; align-items: center; color: var(--accent); transition: transform .4s; }
.theme-btn:hover .t-icon { transform: rotate(20deg); }
.t-label {
  font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; color: var(--text2);
  text-transform: uppercase; white-space: nowrap;
}

/* ── SITE BOX ── */
.site-box {
  max-width: 1400px;
  margin: 0 auto;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: border-color .45s;
}

/* ── SECTION BASE ── */
.section {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
  transition: border-color .45s;
}
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.section-label {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 3px; color: var(--accent);
  text-transform: uppercase; margin-bottom: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .95; letter-spacing: -1px; color: var(--text);
}
.section-sub { font-size: 14px; color: var(--text2); max-width: 260px; line-height: 1.75; text-align: right; font-weight: 400; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes slideIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 100px 48px 72px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  transition: border-color .45s;
}
.hero-bg { position: absolute; inset: 0; transition: background .45s; }
[data-theme="dark"] .hero-bg {
  background:
    radial-gradient(ellipse 65% 55% at 78% 8%,  rgba(91,127,149,.14) 0%, transparent 62%),
    radial-gradient(ellipse 45% 55% at 8%  84%,  rgba(44,62,74,.2)   0%, transparent 58%),
    radial-gradient(ellipse 30% 30% at 50% 50%,  rgba(122,171,202,.04) 0%, transparent 65%);
}
[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 65% 55% at 78% 8%,  rgba(91,127,149,.1) 0%, transparent 62%),
    radial-gradient(ellipse 45% 55% at 8%  84%,  rgba(91,127,149,.07) 0%, transparent 58%);
}
.hero::before, .hero::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 1px;
  background: var(--border); transition: background .45s;
}
.hero::before { left: 0; } .hero::after { right: 0; }

.hero-tag {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 3px; color: var(--accent); text-transform: uppercase;
  margin-bottom: 28px; font-weight: 600; opacity: 0; animation: fadeUp .8s .2s forwards;
  display: flex; align-items: center; gap: 12px; position: relative;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 12vw, 180px);
  line-height: .9; letter-spacing: -2px;
  opacity: 0; animation: fadeUp .8s .4s forwards; position: relative;
}
.outline { -webkit-text-stroke: 1.5px var(--accent); color: transparent; }
.hero-sub {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 44px; gap: 40px;
  opacity: 0; animation: fadeUp .8s .7s forwards; position: relative;
}
.hero-desc { font-size: 15px; line-height: 1.75; color: var(--text2); max-width: 380px; font-weight: 400; letter-spacing: -0.01em; }
.hero-stats { display: flex; gap: 40px; flex-shrink: 0; }
.stat-item {
  border-left: 1px solid var(--border); padding-left: 24px;
  transition: border-color .45s;
}
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--accent); line-height: 1; display: block; }
.stat-label { font-size: 9px; letter-spacing: 2px; color: var(--text2); text-transform: uppercase; font-weight: 600; }
.scroll-hint {
  position: absolute; bottom: 72px; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp .8s 1.1s forwards;
}
.scroll-hint span { font-size: 9px; letter-spacing: 3px; color: var(--text2); text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-hint::after { content: ''; width: 1px; height: 52px; background: linear-gradient(to bottom, var(--accent), transparent); }
.hero-btns {
  display: flex; gap: 12px; margin-top: 32px;
  opacity: 0; animation: fadeUp .8s .9s forwards; position: relative;
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 13px 0; background: var(--bg2);
  transition: background .45s, border-color .45s;
}
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 18px; padding: 0 32px;
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 2.5px; color: var(--text2);
  white-space: nowrap; text-transform: uppercase;
}
.dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  transition: border-color .45s;
}
.service-card {
  padding: 32px 26px;
  position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: border-color .45s; cursor: none;
}
.service-card:nth-child(4n) { border-right: none; }
.service-card:nth-child(n+5) { border-bottom: none; }
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .42s cubic-bezier(.16,1,.3,1);
}
.service-card:hover::before { transform: translateY(0); }
.service-num, .service-icon, .service-name, .service-desc { position: relative; transition: color .3s; }
.service-num { font-family: 'Inter', sans-serif; font-size: 9px; color: var(--text2); margin-bottom: 32px; font-weight: 600; letter-spacing: 1px; }
.service-icon { font-size: 26px; color: var(--accent); margin-bottom: 14px; display: block; }
.service-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; margin-bottom: 8px; color: var(--text); }
.service-desc { font-size: 13px; color: var(--text2); line-height: 1.7; font-weight: 400; }
.service-card:hover .service-num,
.service-card:hover .service-icon,
.service-card:hover .service-name,
.service-card:hover .service-desc { color: #fff; }

/* ── TOOLS / BRANDS SECTION ── */
.tools-section {
  padding: 56px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  transition: background .45s, border-color .45s;
}
.tools-label {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 2px; color: var(--text2);
  text-transform: uppercase; text-align: center;
  margin-bottom: 36px; font-weight: 600;
}
.tools-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 0;
}
.tool-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 28px;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  transition: background .25s, border-color .45s;
  cursor: none;
  min-width: 100px;
}
.tool-item:hover { background: var(--bg3); border-color: var(--accent); z-index: 1; position: relative; }
.tool-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.tool-item:hover .tool-icon { transform: scale(1.15); }
.tool-name {
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
  color: var(--text2); transition: color .25s;
}
.tool-item:hover .tool-name { color: var(--accent); }

/* ── ABOUT ── */
.about {
  padding: 96px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  border-bottom: 1px solid var(--border);
  transition: border-color .45s;
}
.about-visual { position: relative; height: 480px; }
.about-box { position: absolute; border: 1px solid var(--border); background: var(--bg2); transition: background .45s, border-color .45s; }
.about-box-main { inset: 0 44px 44px 0; }
.about-box-accent {
  width: 168px; height: 168px; bottom: 0; right: 0;
  background: var(--accent) !important; border: none !important;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.about-grid-inner { display: flex; flex-direction: column; gap: 18px; padding: 32px; height: 100%; justify-content: center; }
.about-badge {
  background: rgba(91,127,149,.1); border: 1px solid rgba(91,127,149,.22);
  color: var(--accent); font-family: 'Inter', sans-serif;
  font-size: 9px; padding: 6px 12px; letter-spacing: 2px;
  display: inline-block; width: fit-content;
}
.about-big-text { font-family: 'Bebas Neue', sans-serif; font-size: 46px; line-height: 1; color: var(--text); }
.about-small { font-size: 13px; color: var(--text2); line-height: 1.75; font-weight: 400; }
.about-years { font-family: 'Bebas Neue', sans-serif; font-size: 60px; color: #fff; line-height: 1; text-align: center; }
.about-years small { display: block; font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 2px; font-weight: 500; text-transform: uppercase; color: rgba(255,255,255,.8); }
.about-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 4.5vw, 64px); line-height: .95; margin: 18px 0; color: var(--text); }
.about-content p { font-size: 14px; line-height: 1.8; color: var(--text2); margin-bottom: 12px; font-weight: 400; letter-spacing: -0.01em; }
.about-list { list-style: none; margin: 24px 0; }
.about-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text); font-weight: 400;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  transition: border-color .45s;
}
.about-list li::before { content: '↗'; color: var(--accent); font-size: 13px; }

/* ── PROCESS ── */
.process {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
  transition: background .45s, border-color .45s;
}
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 56px; }
.process-step {
  padding: 32px 28px;
  border: 1px solid var(--border); border-right: none;
  transition: border-color .45s, background .3s;
}
.process-step:last-child { border-right: 1px solid var(--border); }
.process-step:hover { background: var(--bg2); }
.step-num { font-family: 'Inter', sans-serif; font-size: 9px; color: var(--accent); letter-spacing: 2px; margin-bottom: 28px; display: block; font-weight: 600; }
.step-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; margin-bottom: 10px; color: var(--text); }
.step-line { width: 32px; height: 1px; background: var(--accent); margin-bottom: 14px; }
.step-desc { font-size: 13px; color: var(--text2); line-height: 1.72; font-weight: 400; }

/* ── TEAM ── */
.team-section {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
  transition: border-color .45s;
}
.team-list { border-top: 1px solid var(--border); margin-top: 0; }
.team-row {
  display: grid;
  grid-template-columns: 56px 280px 1fr auto;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden; cursor: none;
  transition: background .25s, border-color .45s;
}
.team-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--accent);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.team-row:hover { background: var(--bg2); }
.team-row:hover::before { transform: scaleY(1); }
.team-idx {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: 2px; color: var(--border);
  border-right: 1px solid var(--border);
  transition: color .3s, border-color .45s; flex-shrink: 0;
}
.team-row:hover .team-idx { color: var(--accent); }
.team-avatar-wrap {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 28px;
  border-right: 1px solid var(--border);
  transition: border-color .45s;
}
.team-silhouette {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent2); background: var(--bg3);
  transition: border-color .35s, background .35s, color .35s;
}
.team-row:hover .team-silhouette { border-color: var(--accent); background: var(--accent3); }
.team-name-wrap { display: flex; flex-direction: column; gap: 4px; }
.team-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2.5px; color: var(--text); line-height: 1; transition: color .25s; }
.team-row:hover .team-name { color: var(--accent2); }
.team-role { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 1.5px; color: var(--text2); text-transform: uppercase; transition: color .25s; font-weight: 600; }
.team-row:hover .team-role { color: var(--accent); }
.team-tags {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  padding: 22px 32px;
  border-right: 1px solid var(--border);
  transition: border-color .45s;
}
.team-tag {
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
  padding: 5px 11px; border: 1px solid var(--border); color: var(--text2);
  transition: border-color .3s, color .3s, background .3s;
}
.team-row:hover .team-tag { border-color: rgba(91,127,149,.35); color: var(--text); background: rgba(91,127,149,.06); }
.team-socials { display: flex; align-items: center; padding: 0 20px; gap: 2px; }
.team-social {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); text-decoration: none;
  border: 1px solid transparent;
  transition: border-color .2s, color .2s, background .2s;
}
.team-social:hover { color: var(--accent); border-color: var(--border); background: var(--bg3); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
  transition: background .45s, border-color .45s;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  transition: border-color .45s;
}
.testi-card {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background .3s, border-color .45s;
}
.testi-card:last-child { border-right: none; }
.testi-card:hover { background: var(--bg2); }
.testi-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; line-height: .8;
  color: var(--accent); opacity: .15;
  position: absolute; top: 16px; right: 24px;
  pointer-events: none; user-select: none;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testi-star { color: var(--accent); font-size: 13px; }
.testi-text {
  font-size: 14px; line-height: 1.8; color: var(--text2);
  margin-bottom: 28px; position: relative;
  font-weight: 400; letter-spacing: -0.01em;
}
.testi-divider { width: 32px; height: 1px; background: var(--accent); margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--accent3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 16px;
  color: var(--accent2); flex-shrink: 0;
  transition: border-color .45s;
}
.testi-card:hover .testi-avatar { border-color: var(--accent); }
.testi-name { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 2px; color: var(--text); }
.testi-company { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 1px; color: var(--accent); text-transform: uppercase; margin-top: 2px; font-weight: 600; }

/* ── CTA ── */
.cta-section {
  padding: 112px 48px;
  border-bottom: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
  transition: border-color .45s;
}
.cta-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 13vw, 200px);
  color: transparent; -webkit-text-stroke: 1px var(--border);
  white-space: nowrap; z-index: 0; letter-spacing: -4px;
  pointer-events: none; user-select: none;
  transition: -webkit-text-stroke-color .45s;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 7.5vw, 100px); line-height: .95; margin-bottom: 24px; color: var(--text); }
.cta-section p { font-size: 15px; color: var(--text2); max-width: 440px; margin: 0 auto 40px; line-height: 1.75; font-weight: 400; letter-spacing: -0.01em; }

/* ── BUTTONS ── */
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 15px 32px;
  border: none; cursor: none; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 14px 36px var(--shadow-c); }
.btn-secondary {
  background: transparent; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 32px; border: 1px solid var(--border);
  cursor: none; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── CONTACT FORM SECTION ── */
.contact-section {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; transition: border-color .45s;
}
.contact-left {
  padding-right: 56px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
  transition: border-color .45s;
}
.contact-right { padding-left: 56px; display: flex; flex-direction: column; justify-content: center; }
.contact-left h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 80px); line-height: .95; margin: 16px 0 20px; color: var(--text); }
.contact-left p { font-size: 14px; line-height: 1.8; color: var(--text2); margin-bottom: 36px; font-weight: 400; letter-spacing: -0.01em; }
.contact-info { display: flex; flex-direction: column; }
.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  transition: border-color .45s;
}
.contact-info-item:first-child { border-top: 1px solid var(--border); }
.ci-icon {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0; transition: border-color .45s;
}
.ci-label { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 1px; color: var(--text2); text-transform: uppercase; margin-bottom: 2px; font-weight: 600; }
.ci-value { font-size: 14px; color: var(--text); font-weight: 400; }
.ci-value a { color: var(--text); text-decoration: none; }
.ci-value a:hover { color: var(--accent); }

/* FORM */
.contact-form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; }
.form-row .form-field:first-child { border-right: none; }
.form-field {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-bottom: none;
  transition: border-color .3s, background .3s;
}
.form-field:last-of-type { border-bottom: 1px solid var(--border); }
.form-field:focus-within { border-color: var(--accent); background: rgba(91,127,149,.04); }
.form-field label {
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: 2px; color: var(--accent);
  text-transform: uppercase; padding: 12px 16px 0;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent; border: none; outline: none;
  color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 400;
  padding: 8px 16px 14px; resize: none; cursor: none;
  transition: color .3s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text2); opacity: .6; }
.form-field select { appearance: none; cursor: none; }
.form-field select option { background: var(--bg2); color: var(--text); }
.form-field textarea { min-height: 120px; }
.form-bottom {
  border: 1px solid var(--border); border-top: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; transition: border-color .45s;
}
.form-note { font-family: 'Inter', sans-serif; font-size: 9px; letter-spacing: 1.5px; color: var(--text2); text-transform: uppercase; }
.form-submit {
  background: var(--accent); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 28px; border: none; cursor: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.form-submit:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 8px 24px var(--shadow-c); }

/* Form success state */
.form-success {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 48px 24px; gap: 16px;
}
.form-success.show { display: flex; }
.contact-form.hide, .form-bottom.hide { display: none; }
.success-icon {
  width: 56px; height: 56px; border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.success-title { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--text); }
.success-msg { font-size: 14px; color: var(--text2); line-height: 1.75; max-width: 280px; font-weight: 400; }

/* ── GET STARTED MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(7,17,26,0.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  max-width: 640px; width: 90%;
  background: var(--bg2); border: 1px solid var(--border);
  transform: translateY(32px);
  transition: transform .4s, background .45s, border-color .45s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header {
  padding: 24px 28px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color .45s;
}
.modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; color: var(--text); }
.modal-sub { font-family: 'Inter', sans-serif; font-size: 9px; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; margin-top: 2px; }
.modal-close {
  width: 36px; height: 36px; border: 1px solid var(--border);
  background: transparent; cursor: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); transition: border-color .2s, color .2s;
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }
.modal-body { padding: 28px; }
.modal-form { display: flex; flex-direction: column; }
.modal-field {
  border: 1px solid var(--border); border-bottom: none;
  display: flex; flex-direction: column;
  transition: border-color .3s, background .3s;
}
.modal-field:last-of-type { border-bottom: 1px solid var(--border); }
.modal-field:focus-within { border-color: var(--accent); background: rgba(91,127,149,.04); }
.modal-field label {
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: 2px; color: var(--accent);
  text-transform: uppercase; padding: 10px 14px 0;
}
.modal-field input,
.modal-field select,
.modal-field textarea {
  background: transparent; border: none; outline: none;
  color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 400; padding: 6px 14px 12px; resize: none; cursor: none;
}
.modal-field input::placeholder, .modal-field textarea::placeholder { color: var(--text2); opacity: .6; }
.modal-field select { appearance: none; }
.modal-field select option { background: var(--bg2); }
.modal-field textarea { min-height: 90px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; }
.modal-row .modal-field:first-child { border-right: none; }
.modal-footer {
  padding: 16px 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color .45s;
}
.modal-note { font-family: 'Inter', sans-serif; font-size: 9px; letter-spacing: 1.5px; color: var(--text2); text-transform: uppercase; }
.modal-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 48px 28px; gap: 14px; }
.modal-success.show { display: flex; }
.modal-form.hide, .modal-footer.hide { display: none; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); transition: background .45s, border-color .45s;
}
.footer-top {
  padding: 56px 48px 40px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; border-bottom: 1px solid var(--border);
  transition: border-color .45s;
}
.footer-brand {}
.footer-logo-wrap {
  display: flex; align-items: center; text-decoration: none; margin-bottom: 16px;
}
.footer-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 4px; color: var(--text); }
.footer-logo-text span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: var(--text2); line-height: 1.75; max-width: 240px; margin-bottom: 20px; font-weight: 400; }
.footer-social-row { display: flex; gap: 8px; }
.footer-social-btn {
  width: 34px; height: 34px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--bg3); }
.footer-col-title {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
  color: var(--accent); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--text2); text-decoration: none;
  font-size: 13px; font-weight: 400; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color .45s;
}
.footer-copy { font-size: 10px; color: var(--text2); font-family: 'Inter', sans-serif; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 10px; color: var(--text2); text-decoration: none; font-family: 'Inter', sans-serif; letter-spacing: 1px; transition: color .2s; }
.footer-legal a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .team-row { grid-template-columns: 48px 220px 1fr auto; }
}

@media (max-width: 960px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }
  body.nav-open { overflow: hidden; }

  /* Site box */
  .site-box { border-left: none; border-right: none; }

  /* Hero */
  .hero { padding: 90px 24px 56px; }
  .hero h1 { font-size: clamp(52px, 14vw, 100px); }
  .hero-sub { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-btns { flex-direction: column; }

  /* Sections */
  .section { padding: 64px 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-sub { text-align: left; max-width: 100%; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(n+5) { border-bottom: 1px solid var(--border); }
  .service-card:nth-child(n+7) { border-bottom: none; }

  /* Tools */
  .tools-section { padding: 40px 24px; }
  .tool-item { padding: 16px 20px; min-width: 80px; }

  /* About */
  .about { grid-template-columns: 1fr; padding: 64px 24px; gap: 40px; }
  .about-visual { height: 280px; }

  /* Process */
  .process { padding: 64px 24px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 1px solid var(--border); }
  .process-step:nth-child(3) { border-right: none; border-top: none; }
  .process-step:nth-child(4) { border-top: none; }

  /* Team */
  .team-section { padding: 64px 24px; }
  .team-row { grid-template-columns: 44px 1fr; grid-template-rows: auto auto; }
  .team-avatar-wrap { grid-column: 2; border-right: none; border-bottom: 1px solid var(--border); padding: 18px 20px; }
  .team-idx { grid-row: 1 / 3; }
  .team-tags { grid-column: 2; border-right: none; border-top: none; padding: 14px 20px; }
  .team-socials { grid-column: 2; padding: 8px 20px 16px; justify-content: flex-start; }

  /* Testimonials */
  .testimonials { padding: 64px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card { border-right: none; border-bottom: 1px solid var(--border); }
  .testi-card:last-child { border-bottom: none; }

  /* CTA */
  .cta-section { padding: 72px 24px; }

  /* Contact */
  .contact-section { grid-template-columns: 1fr; padding: 64px 24px; }
  .contact-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 40px; margin-bottom: 40px; }
  .contact-right { padding-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-field:first-child { border-right: 1px solid var(--border); }
  .form-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .modal-row { grid-template-columns: 1fr; }
  .modal-row .modal-field:first-child { border-right: 1px solid var(--border); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 16px 24px; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(44px, 16vw, 72px); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .service-card:last-child { border-bottom: none !important; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: 1px solid var(--border) !important; border-top: none !important; }
  .process-step:first-child { border-top: 1px solid var(--border) !important; }
  .hero-stats { gap: 16px; }
  .stat-item { padding-left: 16px; }
  .stat-num { font-size: 32px; }
  .team-tags { display: none; }
}

/* ── TOASTER ── */
.toaster {
  position: fixed; top: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 360px; pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateX(120%);
  transition: opacity .3s, transform .32s ease-out;
}
.toast--show { opacity: 1; transform: translateX(0); }
.toast--success { border-left: 3px solid var(--accent); }
.toast--error { border-left: 3px solid #c94a4a; }
.toast-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.toast--success .toast-icon { background: var(--accent); color: #fff; }
.toast--error .toast-icon { background: #c94a4a; color: #fff; }
.toast-text { font-size: 13px; color: var(--text); line-height: 1.45; }
@media (max-width: 600px) {
  .toaster { left: 16px; right: 16px; max-width: none; top: 16px; }
  .toast { transform: translateY(-120%); }
  .toast--show { transform: translateY(0); }
}