/* ============================================================
   VYNK CREATIVE — style.css
   Tokens, layout e componentes. Motion/keyframes: animations.css
   ============================================================ */
:root{
  --bg:            #08080F;
  --bg-soft:       #0D0C19;
  --bg-elevated:   #131223;
  --line:          rgba(246,245,250,0.08);
  --line-strong:   rgba(246,245,250,0.16);

  --purple:        #8A76FF;
  --purple-deep:   #5A46D6;
  --purple-dim:    #6C56E8;
  --purple-mist:   rgba(138,118,255,0.12);
  --blue:          #4C8CFF;

  --white:         #F6F5FA;
  --muted:         #9A97AE;
  --muted-2:       #6D6A80;

  --grad-signature: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 55%, var(--blue) 100%);
  --grad-radial:    radial-gradient(circle at 30% 20%, rgba(138,118,255,0.18), transparent 60%);

  --f-display: 'Montserrat', sans-serif;
  --f-body:    'Poppins', sans-serif;
  --f-accent:  'Fraunces', serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 84px;
  --safe-b: env(safe-area-inset-bottom, 0px);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top: var(--nav-h); }
html,body{ overflow-x:hidden; width:100%; }

body{
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  font-weight:300;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  cursor: default;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; background:none; border:none; color:inherit; cursor:pointer; }
input,textarea{ font-family:inherit; background:none; border:none; color:inherit; }

::selection{ background: var(--purple); color:var(--bg); }

:focus-visible{
  outline: 2px solid var(--purple);
  outline-offset: 4px;
  border-radius: 2px;
}

.container{
  width:100%;
  max-width: 1360px;
  margin:0 auto;
  padding: 0 48px;
}

section{ position:relative; }

/* ---------------- Eyebrow / section marker (VYNK Design Language) ---------------- */
.eyebrow{
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--purple);
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:22px;
}
.eyebrow::before{
  content:'';
  width:6px; height:6px;
  border-radius:50%;
  background: var(--purple);
  box-shadow: 0 0 10px 2px rgba(138,118,255,0.65);
  display:inline-block;
  flex:none;
}
.eyebrow .sec-index{
  font-family: var(--f-display);
  font-style:normal;
  font-weight:500;
  font-size:11px;
  letter-spacing:0.14em;
  color: var(--muted-2);
  margin-left:2px;
}

.section-head{ max-width: 720px; margin-bottom: 72px; }
.section-title{
  font-family: var(--f-display);
  font-weight:700;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height:1.08;
  letter-spacing:-0.01em;
  text-transform:uppercase;
}
.section-title em{
  font-family: var(--f-accent);
  font-style: italic;
  font-weight:500;
  text-transform:none;
  color: var(--purple);
}

/* ---------------- Seam — transição autoral entre seções ---------------- */
.seam{
  position:relative;
  height:150px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  pointer-events:none;
}
.seam::before{
  content:'';
  position:absolute; left:50%; top:50%;
  width:560px; height:340px;
  transform:translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(138,118,255,0.10), transparent 72%);
}
.seam-mark{ position:relative; width:18px; height:18px; z-index:2; }
.seam-mark i{ position:absolute; inset:0; display:block; }
.seam-mark i:nth-child(1){
  background: var(--purple);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  filter: drop-shadow(0 0 8px rgba(138,118,255,0.75));
}
.seam-mark i:nth-child(2){
  width:5px; height:5px; left:50%; top:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background: var(--bg);
}

/* ---------------- Buttons & links ---------------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--f-display);
  font-weight:600;
  font-size:14px;
  letter-spacing:0.03em;
  text-transform:uppercase;
  padding:18px 34px;
  border-radius:100px;
  overflow:hidden;
  isolation:isolate;
}
.btn-primary{
  background: var(--white);
  color: var(--bg);
}
.btn-primary::before{
  content:'';
  position:absolute; inset:0;
  background: var(--grad-signature);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index:-1;
}
.btn-primary:hover::before{ transform:translateY(0); }
.btn-primary:hover{ color:var(--white); }
.btn-primary .arrow{ transition: transform .4s var(--ease); }
.btn-primary:hover .arrow{ transform: translate(4px,-4px); }

.btn-ghost{
  font-family: var(--f-display);
  font-weight:500;
  font-size:14px;
  letter-spacing:0.03em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding-bottom:4px;
  border-bottom:1px solid var(--line-strong);
  transition: border-color .35s var(--ease), gap .35s var(--ease), color .35s var(--ease);
}
.btn-ghost:hover{ border-color: var(--purple); color: var(--purple); gap:14px; }

.link-arrow{ display:inline-block; transition: transform .35s var(--ease); }

/* ---------------- Navbar ---------------- */
header.nav{
  position:fixed; top:0; left:0; right:0;
  z-index:900;
  height: var(--nav-h);
  display:flex; align-items:center;
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom:1px solid transparent;
}
header.nav.scrolled{
  background: rgba(8,8,15,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-color: var(--line);
}
.nav-inner{
  width:100%; max-width:1360px; margin:0 auto; padding:0 48px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{ display:flex; align-items:center; height:30px; }
.brand img{ height:100%; width:auto; }

.nav-links{ display:flex; align-items:center; gap:40px; }
.nav-links a{
  font-family: var(--f-display);
  font-size:13px;
  font-weight:500;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color: var(--muted);
  position:relative;
  padding:4px 0;
  transition: color .3s ease;
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background:var(--purple);
  transition: width .35s var(--ease);
}
.nav-links a:hover{ color:var(--white); }
.nav-links a:hover::after{ width:100%; }

.nav-cta{ display:flex; align-items:center; gap:28px; }
.nav-cta .btn-ghost{ display:none; }
@media(min-width:1100px){ .nav-cta .btn-ghost{ display:inline-flex; } }

.burger{
  width:44px; height:44px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  z-index:1200; position:relative;
}
.burger span{ width:22px; height:1px; background:var(--white); transition: transform .4s var(--ease), opacity .3s ease; }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
@media(min-width:1000px){ .burger{ display:none; } }
@media(max-width:999px){ .nav-links{ display:none; } .nav-cta .btn-primary{ display:none; } }

.mobile-menu{
  position:fixed; inset:0; z-index:1100;
  background: var(--bg-soft);
  display:flex; flex-direction:column; justify-content:center;
  padding: 0 32px;
  transform: translateY(-100%);
  visibility:hidden;
  transition: transform .6s var(--ease), visibility 0s linear .6s;
}
.mobile-menu.open{ transform: translateY(0); visibility:visible; transition: transform .6s var(--ease), visibility 0s linear 0s; }
.mobile-menu a{
  font-family:var(--f-display); font-weight:600; font-size:32px; text-transform:uppercase;
  padding:14px 0; border-bottom:1px solid var(--line); display:block; color:var(--white);
}
.mobile-menu .btn-primary{ margin-top:32px; width:max-content; }

/* ---------------- Hero ---------------- */
.hero{
  min-height:100vh;
  min-height:100svh;
  display:flex; flex-direction:column; justify-content:center;
  padding-top: var(--nav-h);
  position:relative;
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
#heroCanvas{ position:absolute; inset:0; width:100%; height:100%; opacity:0.9; }
#heroVideo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition: opacity 1.4s var(--ease);
}
#heroVideo.is-playing{ opacity:1; }
.hero::after{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 100%, rgba(8,8,15,0.9) 10%, transparent 55%), linear-gradient(180deg, rgba(8,8,15,0.15) 0%, var(--bg) 96%);
  z-index:1;
  pointer-events:none;
}
.hero-content{ position:relative; z-index:2; }
.hero-content .eyebrow{ justify-content:center; }
.hero-title{
  font-family: var(--f-display);
  font-weight:800;
  text-transform:uppercase;
  text-align:center;
  font-size: clamp(34px, 7vw, 96px);
  line-height:1.1;
  letter-spacing:-0.015em;
  max-width:1160px;
  margin: 0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  row-gap:0.06em;
}
.hero-title .word-mask{ overflow:hidden; display:inline-block; padding:0 0.14em; }
.hero-title .word-mask span{ display:inline-block; will-change:transform; }
.hero-title .accent{ color:transparent; -webkit-text-stroke:1px var(--purple); }

.hero-sub{
  font-family: var(--f-body); font-weight:300;
  font-size: clamp(16px,1.6vw,19px);
  color: var(--muted);
  max-width:560px; margin: 30px auto 0; text-align:center;
}
.hero-ctas{ display:flex; align-items:center; justify-content:center; gap:36px; margin-top:52px; flex-wrap:wrap; }

.scroll-cue{
  position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
  z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:12px;
  font-family:var(--f-display); font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--muted-2);
}
.scroll-cue .line-anim{ width:1px; height:44px; background:var(--line-strong); position:relative; overflow:hidden; }

/* ---------------- Generic reveal ---------------- */
.reveal{ opacity:0; transform: translateY(48px); }

/* ---------------- About ---------------- */
.about{ padding:170px 0; }
.about-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:80px; align-items:start; }
.about-title{
  font-family:var(--f-display); font-weight:700; text-transform:uppercase;
  font-size: clamp(30px,3.6vw,46px); line-height:1.15; letter-spacing:-0.01em;
}
.about-copy{ padding-top:14px; }
.about-copy p{ font-size:18px; color:var(--muted); font-weight:300; margin-bottom:24px; }
.about-copy p strong{ color:var(--white); font-weight:500; }
.about-copy .highlight{
  font-family:var(--f-accent); font-style:italic; color:var(--white); font-size:22px; line-height:1.5;
}
@media(max-width:900px){ .about-grid{ grid-template-columns:1fr; gap:40px; } }

/* ---------------- Services ---------------- */
.services{ padding:110px 0; background: var(--bg-soft); }
.service-row{
  display:grid; grid-template-columns: 90px 1fr 1.3fr 40px;
  align-items:center; gap:32px;
  padding:44px 0;
  border-top:1px solid var(--line);
  position:relative;
  cursor:pointer;
  transition: padding-left .5s var(--ease);
}
.service-row:last-child{ border-bottom:1px solid var(--line); }
.service-row::before{
  content:'';
  position:absolute; inset:0;
  background: var(--grad-radial);
  opacity:0;
  transition: opacity .5s ease;
  pointer-events:none;
}
.service-row:hover::before{ opacity:1; }
.service-row:hover{ padding-left:20px; }
.service-num{ font-family:var(--f-accent); font-style:italic; font-size:20px; color:var(--purple); }
.service-name{
  font-family:var(--f-display); font-weight:700; text-transform:uppercase;
  font-size: clamp(22px,2.6vw,34px); letter-spacing:-0.01em;
  transition: color .4s ease, transform .5s var(--ease);
}
.service-row:hover .service-name{ color:var(--purple); transform: translateX(6px); }
.service-desc{ color:var(--muted); font-size:15.5px; font-weight:300; max-width:440px; }
.service-arrow{ font-size:22px; color:var(--muted-2); transition: transform .45s var(--ease), color .4s ease; justify-self:end; }
.service-row:hover .service-arrow{ transform: rotate(45deg); color:var(--purple); }
@media(max-width:900px){
  .service-row{ grid-template-columns: 50px 1fr 32px; }
  .service-desc{ grid-column: 2 / 3; grid-row:2; max-width:100%; margin-top:8px; }
}

/* ---------------- Projects ---------------- */
.projects{ padding:110px 0 60px; }
.project-panel{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  margin-bottom:32px;
  border:1px solid var(--line);
  background: var(--bg-elevated);
  min-height:420px;
  display:flex; align-items:flex-end;
}
.project-visual{
  position:absolute; inset:0;
  background: var(--grad-radial), linear-gradient(135deg, #14122A 0%, #0B0A16 100%);
  transition: transform 1s var(--ease);
}
.project-panel:hover .project-visual{ transform:scale(1.06); }
.project-visual .glyph{
  position:absolute; right:6%; top:50%; transform:translateY(-50%);
  font-family:var(--f-accent); font-style:italic; font-weight:400;
  font-size: clamp(70px,11vw,180px);
  color: rgba(246,245,250,0.05);
  letter-spacing:-0.02em;
  pointer-events:none;
  white-space:nowrap;
}
.project-info{
  position:relative; z-index:2; width:100%;
  padding: 44px 48px;
  display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap;
}
.project-tag{ font-family:var(--f-accent); font-style:italic; color:var(--purple); font-size:14px; margin-bottom:10px; display:block;}
.project-name{ font-family:var(--f-display); font-weight:700; text-transform:uppercase; font-size:clamp(26px,3.4vw,42px); }
.project-desc{ color:var(--muted); font-size:15px; max-width:420px; margin-top:10px; font-weight:300; }
.project-cta{
  font-family:var(--f-display); font-size:13px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase;
  display:flex; align-items:center; gap:8px; white-space:nowrap;
  padding-bottom:6px; border-bottom:1px solid var(--line-strong);
  transition:border-color .35s ease, color .35s ease;
}
.project-panel:hover .project-cta{ border-color:var(--purple); color:var(--purple); }

/* ---------------- AI section ---------------- */
.ai-section{ padding:150px 0; background: var(--bg-soft); position:relative; overflow:hidden; }
.ai-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:80px; align-items:center; }
.ai-copy p{ font-size:17px; color:var(--muted); font-weight:300; margin-bottom:20px; max-width:480px; }
.ai-quote{
  margin-top:36px; padding-left:24px; border-left:2px solid var(--purple);
  font-family:var(--f-accent); font-style:italic; font-size: clamp(19px,1.9vw,24px); line-height:1.5; color:var(--white);
  max-width:480px;
}
.ai-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:32px; }
.ai-tags span{
  font-family:var(--f-display); font-size:11.5px; letter-spacing:0.04em; text-transform:uppercase;
  padding:9px 16px; border:1px solid var(--line-strong); border-radius:100px; color:var(--muted);
}
#aiCanvas{ width:100%; aspect-ratio:1/1; max-width:480px; margin:0 auto; display:block; }
@media(max-width:900px){ .ai-grid{ grid-template-columns:1fr; gap:56px; } .ai-visual{ order:-1; } }

/* ---------------- Process ---------------- */
.process{ padding:150px 0; }
.process-list{ position:relative; max-width:900px; }
.process-track{ position:absolute; left:29px; top:10px; bottom:10px; width:1px; background:var(--line); }
.process-track-fill{ position:absolute; left:0; top:0; width:100%; height:0%; background:var(--purple); transform-origin:top; box-shadow: 0 0 16px var(--purple); }
.process-item{ display:flex; gap:36px; padding:38px 0; position:relative; }
.process-num{
  width:60px; height:60px; flex:none; border-radius:50%;
  border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--f-accent); font-style:italic; font-size:20px; color:var(--muted);
  background:var(--bg); position:relative; z-index:2;
  transition: border-color .4s ease, color .4s ease, background .4s ease;
}
.process-item.is-active .process-num{ border-color:var(--purple); color:var(--purple); background:var(--purple-mist); }
.process-body{ padding-top:10px; }
.process-title{ font-family:var(--f-display); font-weight:700; text-transform:uppercase; font-size:clamp(19px,2vw,24px); margin-bottom:8px; letter-spacing:-0.005em;}
.process-desc{ color:var(--muted); font-size:15.5px; max-width:480px; font-weight:300; }

/* ---------------- Differentiators ---------------- */
.diff{ padding:110px 0 150px; background: var(--bg-soft); }
.diff-list{ display:flex; flex-wrap:wrap; gap:64px 56px; }
.diff-item{ flex:1 1 220px; min-width:200px; }
.diff-index{ font-family:var(--f-accent); font-style:italic; color:var(--purple); font-size:16px; margin-bottom:18px; display:block; }
.diff-title{ font-family:var(--f-display); font-weight:700; text-transform:uppercase; font-size:16px; letter-spacing:0.04em; margin-bottom:12px; }
.diff-desc{ color:var(--muted); font-size:14.5px; font-weight:300; line-height:1.65; max-width:260px; }

/* ---------------- Final CTA ---------------- */
.final-cta{
  padding:200px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
#ctaCanvas{ position:absolute; inset:0; width:100%; height:100%; opacity:0.55; }
.final-cta::after{
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 50%, transparent 0%, var(--bg) 72%);
  pointer-events:none;
}
.final-cta .inner{ position:relative; z-index:2; }
.final-title{
  font-family:var(--f-display); font-weight:800; text-transform:uppercase;
  font-size: clamp(34px,6vw,80px); line-height:1.05; letter-spacing:-0.015em;
  max-width:980px; margin:0 auto;
}
.final-sub{ color:var(--muted); font-size:18px; max-width:480px; margin:26px auto 0; font-weight:300; }
.final-cta .btn-primary{ margin-top:48px; }

/* ---------------- Contact ---------------- */
.contact{ padding:150px 0; background: var(--bg-soft); }
.contact-grid{ display:grid; grid-template-columns: 0.8fr 1.2fr; gap:80px; }
.contact-info .section-title{ margin-bottom:34px; }
.contact-channels{ margin-top:48px; display:flex; flex-direction:column; gap:22px; }
.channel{ display:flex; flex-direction:column; gap:4px; padding-bottom:18px; border-bottom:1px solid var(--line); }
.channel .label{ font-family:var(--f-display); font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted-2); }
.channel .value{ font-size:17px; font-weight:400; transition:color .3s ease; }
.channel a.value:hover{ color:var(--purple); }

.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-bottom:28px; }
.field{ position:relative; }
.field label{
  display:block; font-family:var(--f-display); font-size:11px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--muted-2); margin-bottom:10px;
}
.field input, .field textarea{
  width:100%; border-bottom:1px solid var(--line-strong); padding:10px 2px 14px; font-size:16px; color:var(--white);
  transition: border-color .35s ease;
}
.field textarea{ resize:vertical; min-height:90px; }
.field input:focus, .field textarea:focus{ border-color:var(--purple); }
.field input::placeholder, .field textarea::placeholder{ color:var(--muted-2); font-weight:300; }
.form-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:12px; flex-wrap:wrap; gap:20px; }
.form-note{ font-size:13px; color:var(--muted-2); max-width:320px; }
@media(max-width:900px){ .contact-grid{ grid-template-columns:1fr; gap:56px; } .form-row{ grid-template-columns:1fr; gap:20px; } }

/* ---------------- Footer ---------------- */
footer{ padding:60px 0 40px; }
.footer-top{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:32px; padding-bottom:44px; }
.footer-brand img{ height:34px; width:auto; margin-bottom:16px; }
.footer-brand p{ color:var(--muted-2); font-size:13.5px; max-width:280px; }
.footer-cols{ display:flex; gap:80px; flex-wrap:wrap; }
.footer-col h4{ font-family:var(--f-display); font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted-2); margin-bottom:18px; }
.footer-col a, .footer-col span{ display:block; color:var(--muted); font-size:14.5px; margin-bottom:12px; transition:color .3s ease; }
.footer-col a:hover{ color:var(--purple); }
.footer-bottom{ padding-top:28px; border-top:1px solid var(--line); display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; color:var(--muted-2); font-size:12.5px; }
@media(max-width:700px){ .footer-cols{ gap:40px; } }

/* ---------------- WhatsApp floating button ---------------- */
.wa-float{
  position:fixed;
  right:24px;
  bottom: calc(24px + var(--safe-b));
  z-index:850;
  height:56px;
  min-width:56px;
  border-radius:100px;
  background: rgba(13,12,25,0.85);
  border:1px solid var(--line-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display:flex; align-items:center;
  overflow:hidden;
  padding:0 16px;
  gap:0;
  transition: min-width .5s var(--ease), background .4s ease, border-color .4s ease, box-shadow .4s ease, gap .4s ease, padding .4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.wa-float .wa-icon{ flex:none; width:24px; height:24px; display:flex; align-items:center; justify-content:center; }
.wa-float .wa-icon svg{ width:20px; height:20px; }
.wa-float .wa-label{
  font-family:var(--f-display); font-weight:600; font-size:12.5px; letter-spacing:0.03em; text-transform:uppercase;
  white-space:nowrap; max-width:0; overflow:hidden; opacity:0;
  transition: max-width .5s var(--ease), opacity .35s ease .05s, margin .5s var(--ease);
}
@media(hover:hover){
  .wa-float:hover{ border-color: var(--purple); box-shadow: 0 8px 34px rgba(138,118,255,0.25); gap:10px; }
  .wa-float:hover .wa-label{ max-width:160px; opacity:1; margin-left:2px; }
}
@media(max-width:640px){
  .wa-float{ right:16px; bottom: calc(16px + var(--safe-b)); height:52px; min-width:52px; padding:0 14px; }
  .wa-float .wa-label{ display:none; }
}

/* ---------------- Responsive base ---------------- */
@media(max-width:900px){
  .container{ padding:0 24px; }
  .nav-inner{ padding:0 20px; }
  .about, .services, .projects, .ai-section, .process, .diff, .contact{ padding-top:90px; padding-bottom:90px; }
  .final-cta{ padding:120px 0; }
  .section-head{ margin-bottom:48px; }
  .project-info{ padding:28px 24px; }
  .seam{ height:100px; }
}
@media(max-width:480px){
  .hero-ctas{ flex-direction:column; gap:20px; }
  .btn{ padding:16px 26px; }
}
