/* ============================================================
   Soft-Tech Point — Main Stylesheet
   ============================================================ */

/* FONTS & VARIABLES */
:root {
  --navy:       #0B1F4D;
  --navy-dark:  #060F2B;
  --navy-mid:   #142660;
  --blue:       #1A4FBF;
  --accent:     #00D4FF;
  --accent-g:   #00E5A0;
  --accent-o:   #FF6B35;
  --white:      #FFFFFF;
  --off-white:  #F0F4FF;
  --light-gray: #E8EEFF;
  --text:       #1A1A2E;
  --muted:      #6B7DB3;
  --light:      #A0AFCC;
  --card-bg:    #0E2152;
  --card-border:rgba(0,212,255,.12);
  --section-alt:#F5F8FF;

  --hero-grad:  linear-gradient(135deg, #060F2B 0%, #0B1F4D 50%, #142660 100%);
  --accent-grad:linear-gradient(135deg, #00D4FF, #00E5A0);
  --radius:     16px;
  --radius-lg:  24px;
  --shadow:     0 4px 24px rgba(26,79,191,.08);
  --shadow-lg:  0 16px 48px rgba(26,79,191,.14);
  --transition: all .3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy-dark); border-top: 1px solid rgba(0,212,255,.15);
  padding: 14px 5%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
#cookie-banner p { color: rgba(255,255,255,.7); font-size: 14px; }
#cookie-banner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(6,15,43,.96);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(0,212,255,.1);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--navy-dark);
  font-family: 'Syne', sans-serif;
}
.logo-text { display: flex; flex-direction: column; }
.logo-brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; color: #fff; line-height: 1.1; }
.logo-sub   { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 11px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.8); font-weight: 600; font-size: 14px;
  padding: 8px 14px; border-radius: 8px;
  border-bottom: 2px solid transparent;
}
.nav-links a.active,
.nav-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.nav-links li.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dark); border: 1px solid rgba(0,212,255,.15);
  border-radius: var(--radius); padding: 8px; min-width: 220px;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.dropdown li a {
  display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px;
  white-space: nowrap; border-bottom: none;
}
.dropdown li a:hover { background: rgba(0,212,255,.08); color: var(--accent); }
.has-dropdown:hover .dropdown { display: block; }
.nav-cta { font-size: 13px; padding: 10px 22px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 5%; background: var(--navy-dark);
  border-top: 1px solid rgba(0,212,255,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-weight: 600; font-size: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-grad);
  color: var(--navy-dark); font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition); font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 24px rgba(0,212,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,212,255,.5); color: var(--navy-dark); }
.btn-sm { font-size: 13px; padding: 8px 20px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; font-weight: 600; font-size: 15px;
  padding: 13px 30px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.35);
  cursor: pointer; transition: var(--transition); font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--accent); color: var(--accent); }
.btn-outline-sm { font-size: 13px; padding: 8px 18px; background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; cursor: pointer; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition); font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-dark:hover { background: var(--blue); transform: translateY(-2px); color: #fff; }

/* ============================================================
   SECTION TAGS & TYPOGRAPHY HELPERS
   ============================================================ */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,.1); color: var(--accent);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; border: 1px solid rgba(0,212,255,.25);
  margin-bottom: 16px;
}
.section-tag.dark { background: rgba(26,79,191,.1); color: var(--blue); border-color: rgba(26,79,191,.2); }
.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 20px; }
.section-sub { font-size: 18px; color: var(--muted); max-width: 600px; }

/* ============================================================
   CARDS
   ============================================================ */
.card-dark {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 28px; transition: var(--transition);
}
.card-dark:hover { border-color: rgba(0,212,255,.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }

.card-light {
  background: #fff; border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg); padding: 28px; transition: var(--transition);
  box-shadow: var(--shadow);
}
.card-light:hover { border-color: rgba(26,79,191,.25); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ============================================================
   HERO (shared)
   ============================================================ */
.hero {
  background: var(--hero-grad); min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px 5% 80px; position: relative; overflow: hidden; text-align: center;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .04; pointer-events: none;
  background-image: linear-gradient(rgba(0,212,255,.5) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(0,212,255,.5) 1px,transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,212,255,.08) 0%, transparent 70%);
}
.hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; color: #fff; margin-bottom: 24px; }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 24px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: 13px; }
.hero-badge span { color: var(--accent); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--navy); padding: 40px 5%; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; text-align: center; }
.stat-value { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; background: var(--accent-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 5%; }
.section.alt { background: var(--section-alt); }
.section.dark { background: var(--navy); }
.section.darker { background: var(--navy-dark); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* GRID LAYOUTS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

/* ============================================================
   HOME PAGE SPECIFIC
   ============================================================ */
/* Hero split layout */
.hero-home { text-align: left; padding-top: 140px; }
.hero-home .hero-inner { max-width: 1200px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-home h1 { font-size: clamp(36px, 5vw, 60px); text-align: left; }
.hero-home p.lead { text-align: left; margin-bottom: 40px; max-width: 500px; }
.hero-home .hero-ctas { justify-content: flex-start; }
.hero-home .hero-badges { justify-content: flex-start; }

/* Floating stat cards */
.hero-visual { position: relative; height: 480px; }
.float-card {
  position: absolute; background: rgba(14,33,82,.85);
  backdrop-filter: blur(20px); border-radius: 20px;
  border: 1px solid rgba(0,212,255,.2); padding: 24px;
  animation: floatAnim 4s ease-in-out infinite;
}
.float-card.main { top: 10%; left: 0; width: 90%; }
.float-card.mini1 { bottom: 5%; right: 0; padding: 16px 20px; animation-delay: -1s; }
.float-card.mini2 { top: 5%; right: -5%; padding: 16px 20px; animation-delay: -2s; }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.bar-chart { display: flex; gap: 4px; align-items: flex-end; margin-top: 16px; }
.bar-chart-bar { flex: 1; border-radius: 4px; background: rgba(0,212,255,.2); transition: height 1s ease; }
.bar-chart-bar.active { background: var(--accent-grad); }

/* Problem cards */
.problem-card { display: flex; gap: 16px; }
.problem-icon { font-size: 32px; flex-shrink: 0; }

/* Service cards */
.service-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.service-card .more { font-weight: 700; font-size: 14px; }

/* Portfolio card */
.portfolio-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-accent { height: 6px; }
.portfolio-body { padding: 28px; }
.portfolio-meta { display: flex; justify-content: space-between; margin-bottom: 16px; }
.portfolio-tag { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.portfolio-cat { color: var(--muted); font-size: 13px; }
.portfolio-result { border-left: 3px solid; padding: 12px 16px; border-radius: 0 10px 10px 0; margin-top: 16px; }
.result-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.result-text { font-size: 14px; font-weight: 600; color: var(--text); }

/* Testimonial */
.testimonial-card .stars { margin-bottom: 16px; color: #F59E0B; font-size: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-style: italic; color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-grad); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--navy-dark); flex-shrink: 0; }
.author-name { color: #fff; font-weight: 700; font-size: 15px; }
.author-role { color: var(--muted); font-size: 13px; }

/* Lead form section */
.lead-section { background: var(--hero-grad); padding: 100px 5%; position: relative; overflow: hidden; }
.form-card { background: rgba(14,33,82,.7); backdrop-filter: blur(20px); border: 1px solid rgba(0,212,255,.15); border-radius: var(--radius-lg); padding: 40px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,.8); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: 12px;
  border: 1.5px solid rgba(0,212,255,.2); background: rgba(255,255,255,.06);
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; outline: none;
  transition: border-color .2s;
}
.form-group select option { background: var(--navy-dark); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; color: rgba(255,255,255,.4); font-size: 13px; margin-top: 12px; }

/* Light form */
.form-light input,
.form-light select,
.form-light textarea {
  background: #F8FAFF; border-color: #D4DEFF; color: var(--text);
}
.form-light input:focus,
.form-light select:focus,
.form-light textarea:focus { border-color: var(--blue); background: #fff; }
.form-light label { color: var(--text); }
.form-light input::placeholder,
.form-light textarea::placeholder { color: var(--muted); }

/* Success message */
.success-msg { text-align: center; padding: 60px 40px; }
.success-msg .icon { font-size: 60px; margin-bottom: 20px; }
.success-msg h3 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-card { text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 26px; font-weight: 800; color: #fff; }
.team-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-weight: 700; font-size: 13px; margin-bottom: 12px; }
.team-bio { color: var(--muted); font-size: 14px; line-height: 1.7; }

.usp-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.usp-card .icon { font-size: 32px; margin-bottom: 16px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-section { padding: 80px 5%; }
.service-section.alt { background: var(--section-alt); }
.service-detail-icon { font-size: 52px; margin-bottom: 20px; }
.service-features { background: var(--navy-dark); border-radius: 20px; padding: 28px; margin-bottom: 20px; }
.service-features h4 { font-family: 'Syne', sans-serif; color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: 14px; }
.feature-check { color: var(--accent); font-weight: 700; }
.pricing-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.price-card { border-radius: 16px; padding: 16px; text-align: center; position: relative; }
.price-card.popular { background: var(--blue); }
.price-card:not(.popular) { background: #fff; border: 1.5px solid var(--light-gray); }
.popular-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--accent-grad); color: var(--navy-dark); font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.price-plan { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.price-card.popular .price-plan { color: rgba(255,255,255,.7); }
.price-amount { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; }
.price-card.popular .price-amount { color: #fff; }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.filter-bar { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; justify-content: center; }
.filter-btn { background: #F0F4FF; color: var(--muted); border: none; border-radius: 50px; padding: 8px 20px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--blue); color: #fff; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.problem-label  { font-size: 11px; font-weight: 700; color: #E45858; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.solution-label { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.ptext { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.featured-post {
  background: var(--hero-grad); border-radius: 24px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  cursor: pointer; position: relative; overflow: hidden; margin-bottom: 48px;
  transition: var(--transition);
}
.featured-post:hover { transform: translateY(-4px); }
.featured-badge { background: rgba(0,212,255,.2); color: var(--accent); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 16px; }
.featured-post h2 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.featured-post p { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.featured-meta { color: rgba(255,255,255,.5); font-size: 14px; }
.featured-visual { text-align: right; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card { cursor: pointer; }
.blog-card:hover { transform: translateY(-4px); }
.cat-badge { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; display: inline-block; }
.blog-card h3 { font-size: 18px; font-weight: 700; margin: 12px 0; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--light-gray); padding-top: 16px; }
.author-mini { display: flex; align-items: center; gap: 10px; }
.author-mini-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--accent-grad); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--navy-dark); flex-shrink: 0; }
.author-mini-name { font-size: 13px; font-weight: 600; }
.author-mini-date { font-size: 11px; color: var(--muted); }
.read-more { color: var(--blue); font-weight: 700; font-size: 13px; }

/* Blog Post */
.blog-post-hero { background: var(--hero-grad); padding: 140px 5% 80px; position: relative; }
.back-btn { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; border-radius: 8px; padding: 8px 16px; font-size: 14px; cursor: pointer; margin-bottom: 24px; display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif; }
.post-content { max-width: 820px; margin: 0 auto; padding: 60px 5%; display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.post-body h2 { font-size: 24px; font-weight: 700; margin: 36px 0 16px; }
.post-body p { font-size: 16px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.post-body .lead { font-size: 18px; font-weight: 500; color: var(--muted); }
.post-cta { background: var(--section-alt); border-radius: 16px; padding: 28px; border-left: 4px solid var(--blue); margin-top: 48px; }
.sidebar-posts .side-post { border-bottom: 1px solid var(--light-gray); padding-bottom: 12px; margin-bottom: 12px; cursor: pointer; }
.sidebar-cta { background: var(--navy); border-radius: 16px; padding: 24px; text-align: center; margin-top: 24px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; padding: 80px 5%; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; padding: 20px; background: var(--section-alt); border-radius: 16px; }
.contact-info-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-value { font-size: 15px; font-weight: 700; margin-top: 2px; }
.contact-info-sub { font-size: 13px; color: var(--muted); }
.map-placeholder { border-radius: 16px; height: 200px; background: var(--hero-grad); display: flex; align-items: center; justify-content: center; margin-top: 8px; position: relative; overflow: hidden; }
.map-placeholder .grid-overlay { position: absolute; inset: 0; opacity: .06; background-image: linear-gradient(rgba(0,212,255,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(0,212,255,.5) 1px,transparent 1px); background-size: 30px 30px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 820px; margin: 0 auto; padding: 60px 5%; }
.legal-content h2 { font-size: 22px; font-weight: 700; margin: 36px 0 16px; }
.legal-content p { font-size: 16px; color: var(--muted); line-height: 1.9; margin-bottom: 16px; }
.legal-footer { background: var(--section-alt); border-radius: 16px; padding: 24px; margin-top: 48px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy-dark); padding: 60px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 16px 0 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; border-radius: 8px; background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.2); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 13px; font-weight: 700; }
.social-links a:hover { background: rgba(0,212,255,.2); }
.footer-col h4 { font-family: 'Syne', sans-serif; color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: var(--muted); font-size: 14px; margin-bottom: 12px; display: flex; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: var(--muted); font-size: 13px; }
.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed; bottom: 80px; right: 24px; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 999;
  transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp   { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes countUp  { from{opacity:0;transform:scale(.5)} to{opacity:1;transform:scale(1)} }
.animate-up { opacity: 0; }
.animate-up.visible { animation: fadeUp .7s ease both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-home .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .post-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-visual { display: none; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 60px 5%; }
  .pricing-row { grid-template-columns: repeat(3,1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .pricing-row { grid-template-columns: 1fr; }
  .hero-home { text-align: center; }
  .hero-home .hero-ctas, .hero-home .hero-badges { justify-content: center; }
}
