@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}

:root {
  --navy-950: #060d1a;
  --navy-900: #0a1526;
  --navy-800: #101f38;
  --navy-700: #16294a;
  --blue-600: #2b5da9;
  --cyan-500: #0092ca;
  --cyan-400: #3eb7d9;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --charcoal: #262722;
  --white: #ffffff;
  --gray-050: #f6f8fb;
  --gray-100: #eef1f6;
  --gray-300: #d7dee8;
  --gray-500: #7c8798;
  --gray-700: #45505f;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1160px;
  --shadow: 0 20px 50px -20px rgba(10, 21, 38, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; }
body > section, body > .site-footer { scroll-snap-align: start; scroll-snap-stop: normal; }
@media (prefers-reduced-motion: reduce) { html { scroll-snap-type: none; } }
body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  animation: page-fade-in 0.6s var(--ease) both;
}
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 900; line-height: 1.1; }
p { margin: 0; }
em, .accent-italic { font-style: italic; color: var(--cyan-400); }

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

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1.is-visible { transition-delay: 0.08s; }
.reveal-delay-2.is-visible { transition-delay: 0.16s; }
.reveal-delay-3.is-visible { transition-delay: 0.24s; }
.reveal-delay-4.is-visible { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  body { animation: none; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-400);
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--cyan-400);
  display: inline-block;
}
.eyebrow.dark { color: var(--cyan-500); }
.eyebrow.dark::before { background: var(--cyan-500); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(0, 146, 202, 0.55);
}
.btn-primary:hover { box-shadow: 0 18px 36px -10px rgba(0, 146, 202, 0.7); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-compact { padding: 10px 22px; font-size: 14px; }
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-800); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 18px 36px -10px rgba(37, 211, 102, 0.7); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding: 18px 0;
  background: rgba(6, 13, 26, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 54px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--cyan-400);
  transition: right 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 22px; }
.nav-toggle { display: none; }

/* ---------- Floating WhatsApp CTA — fixed to viewport, always on top, follows every scroll ---------- */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.65);
  z-index: 999;
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  pointer-events: none;
  transition: transform 0.4s var(--ease), box-shadow 0.25s var(--ease), opacity 0.4s var(--ease);
}
.whatsapp-float.show { opacity: 1; transform: none; pointer-events: auto; animation: whatsapp-pulse 2.6s ease-in-out infinite; }
.whatsapp-float.show:hover { animation-play-state: paused; transform: scale(1.08); box-shadow: 0 18px 40px -8px rgba(37, 211, 102, 0.8); }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.65), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.65), 0 0 0 10px rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-float.show { animation: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 15% 0%, var(--navy-800) 0%, var(--navy-950) 60%);
  color: var(--white);
  padding: 168px 0 120px;
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
.hero h1 {
  font-size: 52px;
  margin: 18px 0 20px;
  letter-spacing: -0.01em;
  max-width: 640px;
}
.hero h1 span { color: var(--cyan-400); }
.hero h1 .rotate {
  display: inline-block;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.hero h1 .rotate.rotate-out { opacity: 0; transform: translateY(-12px); }
.hero p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-top: auto;
  margin-left: auto;
  text-align: right;
  max-width: 420px;
  padding-top: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.phrase-pill {
  position: absolute;
  z-index: 2;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(62, 183, 217, 0.4);
  background: rgba(10, 21, 38, 0.55);
  backdrop-filter: blur(6px);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--white);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  white-space: nowrap;
  pointer-events: none;
}
.phrase-pill.active { opacity: 1; transform: scale(1); box-shadow: 0 0 24px rgba(62, 183, 217, 0.5); border-color: var(--cyan-400); }
.phrase-pill:nth-of-type(1) { top: 14%; left: 6%; right: auto; }
.phrase-pill:nth-of-type(2) { top: 44%; right: 8%; left: auto; }
.phrase-pill:nth-of-type(3) { top: 56%; left: 8%; right: auto; }

@media (prefers-reduced-motion: reduce) {
  .phrase-pill { transition: none; }
}

/* ---------- Sections ---------- */
section { padding: 100px 0; }
body > section { scroll-margin-top: 96px; }
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: 36px; margin: 16px 0; }
.section-head p { font-size: 18.5px; font-weight: 500; color: var(--gray-700); line-height: 1.6; }
.section-head.left { margin: 0 0 48px; text-align: left; }

.section-dark {
  background: radial-gradient(120% 120% at 15% 0%, var(--navy-800) 0%, var(--navy-950) 60%);
  color: var(--white);
}
.section-dark .section-head p { color: rgba(255, 255, 255, 0.72); }
.section-alt { background: var(--gray-050); }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px -20px rgba(10, 21, 38, 0.4); }
.pillar-card .num {
  font-size: 13px;
  font-weight: 900;
  color: var(--cyan-500);
  letter-spacing: 0.1em;
}
.pillar-card h3 { font-size: 21px; margin: 14px 0 12px; }
.pillar-card p { color: var(--gray-700); line-height: 1.65; font-size: 16px; }

.section-dark .pillar-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.section-dark .pillar-card:hover { background: rgba(255, 255, 255, 0.08); box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.5); }
.section-dark .pillar-card .num { color: var(--cyan-400); }
.section-dark .pillar-card h3 { color: var(--white); }
.section-dark .pillar-card p { color: rgba(255, 255, 255, 0.65); }

/* Showcase — mockup + service panel */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.service-panel {
  background: linear-gradient(155deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-panel h3 { font-size: 26px; margin: 14px 0 12px; }
.service-panel p { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); }
.service-panel .feature-list { margin-top: 24px; display: grid; gap: 15px; }
.service-panel .feature-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.service-panel .feature-list .fi {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(62, 183, 217, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-panel .feature-list .fi svg {
  width: 13px;
  height: 13px;
  stroke: var(--cyan-400);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cyan-500);
  color: var(--white);
  margin-bottom: 14px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 8px; transition: transform 0.3s var(--ease); }
.process-step:hover { transform: translateY(-4px); }
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 42px;
  font-weight: 900;
  display: block;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process-step h4 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 15.5px; color: var(--gray-700); line-height: 1.6; }

/* Founder / about block (Sinnapse-style team slide) */
.founder-block {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.founder-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%) contrast(1.08) brightness(1.02);
}
.founder-photo .placeholder-mark {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(62, 183, 217, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 900; color: var(--cyan-400);
}
.founder-bio { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.72); max-width: 460px; margin: 16px 0 26px; }
.founder-content .founder-quote {
  margin: 0 0 26px;
  padding-left: 20px;
  border-left: 3px solid var(--cyan-400);
  max-width: 440px;
}
.founder-content .founder-quote p {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--white);
  text-align: left;
}
.founder-content .founder-quote p em { color: var(--cyan-400); font-style: normal; }
.founder-name { font-size: 16px; font-weight: 800; color: var(--white); display: block; }
.founder-role { font-size: 13.5px; color: var(--cyan-400); font-style: italic; margin-bottom: 22px; display: block; }
.founder-cta { display: inline-flex; }

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 40px;
  padding-bottom: 36px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}


/* Contact — WhatsApp first */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: stretch; }
.contact-whatsapp-card {
  background: linear-gradient(155deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.contact-whatsapp-card h3 { font-size: 22px; line-height: 1.3; }
.contact-whatsapp-card p { font-size: 15px; color: rgba(255, 255, 255, 0.7); line-height: 1.55; }
.contact-whatsapp-card .btn { align-self: flex-start; margin-top: 10px; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 42px;
  display: grid;
  gap: 16px;
  align-content: start;
}
.contact-form h3 { font-size: 20px; margin-bottom: 2px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  background: var(--gray-050);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--cyan-500); background: var(--white); }
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form .btn { justify-self: flex-start; }


/* Mission block (about) */
.mission-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.mission-block p { font-size: 18px; line-height: 1.75; color: var(--gray-700); }

/* ---------- Browser mockup (site preview) ---------- */
.browser-mock {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d1a30;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: mock-float 7s ease-in-out infinite;
  transform-origin: center;
}
.mock-tag {
  position: absolute;
  top: 54px; right: 14px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
@keyframes mock-float {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-14px) rotate(0.4deg); }
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: #0a1526;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-bar i:nth-child(1) { background: #ff5f57; }
.browser-bar i:nth-child(2) { background: #febc2e; }
.browser-bar i:nth-child(3) { background: #28c840; }
.browser-url {
  margin-left: 12px;
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.browser-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 26px 26px 28px; background: linear-gradient(160deg, #0f1e38, #0a1424); }
.bm-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.bm-brand { font-size: 13px; font-weight: 900; color: var(--white); letter-spacing: 0.01em; }
.bm-brand span { color: var(--cyan-400); }
.bm-links { display: flex; gap: 14px; }
.bm-links span { font-size: 10.5px; color: rgba(255, 255, 255, 0.5); font-weight: 500; }
.bm-hero { padding: 6px 0 24px; }
.bm-h1 { font-size: 20px; font-weight: 900; line-height: 1.2; color: var(--white); max-width: 78%; margin-bottom: 10px; }
.bm-h1 span { color: var(--cyan-400); }
.bm-sub { font-size: 11.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.55); max-width: 72%; margin-bottom: 16px; }
.bm-btn { display: inline-block; font-size: 11px; font-weight: 700; color: var(--white); padding: 9px 18px; border-radius: 999px; background: linear-gradient(135deg, var(--cyan-500), var(--blue-600)); }
.bm-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.bm-cards div { padding: 14px 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.07); font-size: 10px; color: rgba(255, 255, 255, 0.7); font-weight: 600; }
.bm-cards div:nth-child(2) { background: rgba(62, 183, 217, 0.12); border-color: rgba(62, 183, 217, 0.25); }
.bm-cards .dot { display: block; width: 16px; height: 16px; border-radius: 5px; background: linear-gradient(135deg, var(--cyan-400), var(--blue-600)); margin-bottom: 9px; opacity: 0.8; }
@media (prefers-reduced-motion: reduce) { .browser-mock { animation: none; } }


/* ---------- Tecnologias utilizadas ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tech-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -24px rgba(10, 21, 38, 0.35); }
.tech-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(0, 146, 202, 0.14), rgba(43, 93, 169, 0.14));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tech-icon svg { width: 23px; height: 23px; stroke: var(--cyan-500); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tech-card h4 { font-size: 17px; margin-bottom: 7px; }
.tech-card p { font-size: 15px; line-height: 1.6; color: var(--gray-700); }

.section-dark .tech-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.section-dark .tech-card:hover { background: rgba(255, 255, 255, 0.08); box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.5); }
.section-dark .tech-icon { background: linear-gradient(140deg, rgba(62, 183, 217, 0.22), rgba(0, 146, 202, 0.22)); }
.section-dark .tech-icon svg { stroke: var(--cyan-400); }
.section-dark .tech-card h4 { color: var(--white); }
.section-dark .tech-card p { color: rgba(255, 255, 255, 0.65); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .pillars, .process-grid, .tech-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .mission-block, .founder-block, .showcase, .contact-grid { grid-template-columns: 1fr; }
  .showcase .browser-mock { order: 2; max-width: 520px; margin: 0 auto; }
  .founder-photo { max-width: 260px; }
  .hero h1 { font-size: 42px; }
  .service-panel { padding: 36px 28px; }
}
.lead-short { display: none; }
@media (max-width: 760px) {
  .hero { min-height: 660px; }
  .hero-canvas { opacity: 0.9; }
  .hero-inner { min-height: 460px; }
  .hero h1 { max-width: none; }
  .lead-full { display: none; }
  .lead-short { display: block; }
  .hero p.lead { max-width: 68%; }
  .hero-actions { display: none; }
  .phrase-pill:nth-of-type(1) { top: 40%; left: 6%; right: auto; }
  .phrase-pill:nth-of-type(2) { top: 54%; right: 8%; left: auto; }
  .phrase-pill:nth-of-type(3) { top: 63%; left: 10%; right: auto; }
}
@media (max-width: 640px) {
  .pillars, .process-grid, .footer-top, .tech-grid { grid-template-columns: 1fr; }
  .hero { padding: 128px 0 90px; }
  .hero h1 { font-size: 28px; }
  section { padding: 64px 0; }
  .founder-block { padding: 32px 24px; }
  .whatsapp-float { width: 54px; height: 54px; right: 18px; bottom: 18px; }
}
