/* ============================================================
   iHCompany — Landing Page Styles
   ============================================================ */

:root {
  --primary:        #1A5CFF;
  --primary-dark:   #1040CC;
  --primary-light:  #EEF4FF;
  --dark:           #2F2F2F;
  --dark-2:         #1A1A1A;
  --gray:           #6B7280;
  --gray-light:     #9CA3AF;
  --light:          #F3F4F6;
  --border:         #E5E7EB;
  --white:          #FFFFFF;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow:         0 4px 24px rgba(26, 92, 255, 0.14);
  --font:           'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html   { scroll-behavior: smooth; }
body   { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img    { display: block; max-width: 100%; }
ul     { list-style: none; }
a      { text-decoration: none; }
button { font-family: var(--font); }

/* ---- CONTAINER ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION PADDING ---- */
.section-pad { padding: 96px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.22s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 92, 255, 0.45);
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 10px 20px;
  font-size: 0.875rem;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.btn-sm  { padding: 8px 16px; font-size: 0.8125rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 15, 46, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.nav-brand {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.brand-ih      { color: var(--primary); }
.brand-company { color: white; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.68);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }

.nav-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 24px 16px;
  background: rgba(10, 15, 46, 0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open  { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: white; }
.mobile-nav .btn {
  margin-top: 10px;
  border-bottom: none;
  padding: 13px 20px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #080E28 0%, #0B1640 35%, #0F1E52 60%, #2F2F2F 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 108px 0 72px;
}

/* grid texture */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 92, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 92, 255, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}
/* ambient glow */
.hero-glow {
  position: absolute;
  top: -10%;  left: -10%;
  width: 60%;  height: 70%;
  background: radial-gradient(circle, rgba(26, 92, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Hero Content ---- */
.hero-content { animation: heroIn 0.8s ease both; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 92, 255, 0.14);
  border: 1px solid rgba(26, 92, 255, 0.32);
  color: #89B8FF;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: -1.5px;
  color: white;
  margin-bottom: 20px;
}
.highlight {
  background: linear-gradient(120deg, #1A5CFF 0%, #89B8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 2px;
}
.stat-label {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
}
.stat-divider {
  width: 1px; height: 30px;
  background: rgba(255,255,255,0.15);
}

/* ---- Hero Visual ---- */
.hero-visual {
  position: relative;
  height: 460px;
  animation: heroIn 1s ease 0.2s both;
}

/* Floating animation variants */
@keyframes float-a {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-10px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-8px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-12px); }
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Main browser mockup */
.main-card {
  width: 320px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: float-a 7s ease-in-out infinite;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.card-dots { display: flex; gap: 5px; }
.dot       { width: 8px; height: 8px; border-radius: 50%; }
.dot-red   { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #27C93F; }
.card-url {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  font-family: monospace;
}
.card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* mock bars */
.mock-bar {
  height: 9px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
}
.mock-bar.w75 { width: 75%; }
.mock-bar.w60 { width: 60%; }
.mock-bar.w80 { width: 80%; }
.mock-bar.w50 { width: 50%; }
.mock-bar.blue { background: rgba(26, 92, 255, 0.5); }
.mock-bar.dim  { background: rgba(255,255,255,0.1); }
.mock-bar.mt4  { margin-top: 2px; }
.mock-btn-row  { display: flex; gap: 8px; margin: 4px 0; }
.mock-btn-el   { height: 22px; border-radius: 5px; width: 72px; }
.mock-btn-el.primary { background: rgba(26, 92, 255, 0.55); }
.mock-btn-el.ghost   { background: rgba(255,255,255,0.1); width: 58px; }
.mock-cards    { display: flex; gap: 8px; }
.mock-card-item { flex: 1; height: 44px; background: rgba(255,255,255,0.06); border-radius: 7px; }

/* side floating cards */
.side-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  min-width: 168px;
}
.side-icon  { font-size: 1.3rem; }
.side-title { font-size: 0.8rem; font-weight: 700; color: white; line-height: 1.2; }
.side-sub   { font-size: 0.69rem; color: rgba(255,255,255,0.45); margin-top: 1px; }

.float-1 { top: 10px;  right: 0;   animation: float-b 7s ease-in-out 1s   infinite; }
.float-2 { bottom: 70px; left: 0;  animation: float-c 7s ease-in-out 2s   infinite; }
.float-3 { bottom: 10px; right: 20px; animation: float-a 7s ease-in-out 0.5s infinite; }

/* ============================================================
   SECTION COMMON HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag.light {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.12);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}
.highlight-dark {
  background: linear-gradient(120deg, var(--primary) 0%, #1E80FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card.featured {
  background: linear-gradient(145deg, #0F2152 0%, #1A3A7A 100%);
  border-color: var(--primary);
}
.service-card.featured h3,
.service-card.featured p  { color: rgba(255,255,255,0.88); }
.service-card.featured p  { color: rgba(255,255,255,0.60); }
.service-card.featured .service-features li { color: rgba(255,255,255,0.70); }

.badge-featured {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--primary);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 26px;
}
.service-card.featured .service-icon {
  background: rgba(26, 92, 255, 0.18);
  color: #89B8FF;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-features li {
  font-size: 0.875rem;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.service-card.featured .service-features li::before { color: #89B8FF; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--light); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.feature-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-icon { font-size: 1.75rem; margin-bottom: 14px; color: var(--primary); }
.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--white); }

.steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.step-icon { font-size: 2rem; margin-bottom: 14px; color: var(--primary); }
.step h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
}
.step-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-top: 0;
  opacity: 0.7;
}

/* ============================================================
   CASES
   ============================================================ */
.cases { background: var(--light); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.case-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.case-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

/* ---- Preview (browser mockup area) ---- */
.case-preview {
  position: relative;
  padding: 12px 12px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.case-preview--tattoo { background: linear-gradient(140deg, #0d0d0d 0%, #1a1a1a 60%, #2a2a2a 100%); }
.case-preview--beer   { background: linear-gradient(140deg, #0e1a0a 0%, #1a3a10 60%, #2a4a1a 100%); }

.case-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.case-url {
  font-size: 0.65rem;
  font-family: monospace;
  color: rgba(255,255,255,0.32);
}

.case-mockup {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cm-hero { display: flex; flex-direction: column; gap: 6px; }
.cm-bar  { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.cm-bar.w75 { width: 75%; }
.cm-bar.w55 { width: 55%; }
.cm-bar.w40 { width: 40%; }
.cm-bar.light  { background: rgba(255,255,255,0.12); }
.cm-bar.accent { background: var(--accent, rgba(26,92,255,0.55)); }
.cm-bar.mt4    { margin-top: 2px; }
.cm-btn-row  { display: flex; gap: 8px; margin-top: 4px; }
.cm-btn      { height: 22px; width: 80px; border-radius: 5px; }

.cm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.cm-img {
  height: 36px;
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
}
.cm-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.cm-card {
  height: 42px;
  border-radius: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.case-tag-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin: 10px 0 12px;
}

/* ---- Info area ---- */
.case-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-client {
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-avatar {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.case-client-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.case-client-loc {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: 1px;
}

.case-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 100px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 4px;
  transition: gap 0.2s, opacity 0.2s;
}
.case-link:hover {
  gap: 10px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cases-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(140deg, #080E28 0%, #0F1E52 40%, #1040CC 75%, #0B1640 100%);
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  top: -30%; right: -20%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(26, 92, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cta-content > p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.65;
}

/* ---- WhatsApp CTA ---- */
.cta-whatsapp-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.btn-whatsapp {
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.0625rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn-whatsapp svg { flex-shrink: 0; color: #25D366; }
.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.form-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
  margin-top: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer-logo {
  display: block;
  font-size: 1.5rem !important;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col h5,
.footer-contact h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
}
.footer-col a {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-contact {
  display: flex;
  flex-direction: column;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-contact a:hover { color: white; }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 0 !important;
  transition: background 0.2s !important;
}
.social-links a:hover { background: var(--primary) !important; }

.footer-cities {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-cities-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
}
.footer-cities-list span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-cities-list span:not(:last-child)::after {
  content: '·';
  margin-left: 4px;
  color: rgba(255,255,255,0.15);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-actions  { justify-content: center; }
  .hero-stats    { justify-content: center; }
  .hero-visual   { display: none; }

  .services-grid  { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .menu-toggle { display: flex; }

  .section-pad { padding: 72px 0; }
  .hero { padding: 94px 0 64px; }
  .hero-title { letter-spacing: -1px; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-lg { width: 100%; max-width: 320px; }
  .hero-stats { gap: 16px; }

  .features-grid { grid-template-columns: 1fr; }

  .steps-wrapper  { flex-direction: column; align-items: center; }
  .step           { max-width: 100%; width: 100%; }
  .step-connector { transform: rotate(90deg); }

  .form-row { grid-template-columns: 1fr; }

  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   PARA PEQUENOS EMPREENDEDORES
   ============================================================ */
.for-small { background: var(--light); }

.for-small-simple {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.for-small-lead {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.75;
}

.for-small-pills {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  text-align: left;
}
.fs-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.fs-pill:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.fs-pill > i {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.fs-pill div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fs-pill strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
}
.fs-pill span {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

