/* ============================================================
   VEZETI — Main Stylesheet
   Edit brand colors in :root below. All pages share this file.
   ============================================================ */

:root {
  /* Brand colors (from vezeti.net) */
  --navy: #0f2a4a;          /* deep brand blue — headings, footer */
  --primary: #14406e;       /* primary blue */
  --accent: #2d7dd2;        /* bright blue — buttons, links */
  --accent-dark: #1f5fa8;   /* hover state */
  --light-blue: #d5e0eb;    /* brand light blue (site theme color) */
  --bg-soft: #f5f8fc;       /* soft section background */
  --text: #33414f;          /* body text */
  --muted: #6b7a89;         /* secondary text */
  --white: #ffffff;
  --border: #e2e9f1;
  --success: #1f9d61;

  /* Typography */
  --font-heading: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(15, 42, 74, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 42, 74, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* guards against the hero image's horizontal overshoot */
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

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

section { padding: 72px 0; }

.section-soft { background: var(--bg-soft); }
.section-light-blue { background: var(--light-blue); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-head p { color: var(--muted); margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: var(--light-blue); color: var(--navy); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--light-blue);
  font-size: 0.85rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--light-blue); }
.topbar a:hover { color: var(--white); }
.topbar-contacts { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 50px; width: auto; }
.brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.brand .brand-name span { color: var(--accent); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 26px 14px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}
.main-nav > li > a:hover, .main-nav > li > a.active { color: var(--accent); }

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  border: solid var(--muted);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg) translateY(-3px);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 0.9rem;
  color: var(--text);
}
.dropdown a:hover { background: var(--bg-soft); color: var(--accent); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 24px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 55%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 96px 0;
}
.hero .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; max-width: 600px; }
.hero .hero-sub { font-size: 1.15rem; color: var(--light-blue); margin-bottom: 30px; max-width: 540px; }
.hero .price-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap;  }

.hero-content { flex: 1 1 460px; }

/* Image sits in its own column next to the text, sized to the column
   rather than bleeding off the right edge of the viewport. */
/*.hero-image { flex: 100 100 54%; min-width: 0; max-width: 720px; display: flex; justify-content:space-around; }
.hero-lady-img { width: 100%; height:auto; display:flexbox; } */


/* The lady's image container (right side) */
.hero-lady-img {
  position: absolute;
  right: 0;
  bottom: 0;
  /* Make the image larger */
  width: 55%; /* Increase from current size */
  max-width: 700px;
  height: auto;
}
/* The lady's image itself */
.hero-lady-img {
  width: 100%;
  height: auto;
  /* Position so her waist aligns with the blue bottom edge */
  /* The image should extend below the blue section */
  transform: translateY(15%); /* Push image down so waist sits at the boundary */
  /* Optional: scale up the image */
  transform: scale(1.0) translateY(17.8%);
  transform-origin: bottom center;
}


/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--light-blue); max-width: 720px; margin: 14px auto 0; }

/* ---------- Cards / Grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card img.card-thumb {
  border-radius: 8px;
  margin-bottom: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* Split (text + image) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split h2 { margin-bottom: 16px; }
.split p { margin-bottom: 16px; }
.split .lead { font-size: 1.08rem; color: var(--primary); font-weight: 500; }

/* ---------- Logo strip ---------- */
.logo-strip { padding: 56px 0; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  align-items: center;
}
.logo-grid img {
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.25s ease;
  margin: 0 auto;
  max-height: 56px;
  width: auto;
}
.logo-grid img:hover { filter: none; opacity: 1; }

/* ---------- Pricing ---------- */
.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  font-family: var(--font-heading);
  font-weight: 600;
}
.billing-toggle .save-badge {
  background: var(--success);
  color: var(--white);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 6px;
}
.switch { position: relative; width: 58px; height: 30px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute;
  inset: 0;
  background: var(--light-blue);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.switch .slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(28px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular { border: 2px solid var(--accent); box-shadow: var(--shadow-lg); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
}
.price-card h3 { margin-bottom: 6px; }
.price-card .price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
}
.price-card .price small { font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.price-card .setup-fee { color: var(--muted); font-size: 0.85rem; margin-bottom: 22px; }
.price-card ul { flex: 1; margin-bottom: 26px; }
.price-card ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--border);
}
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.pricing-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 26px; }

/* ---------- Sign-up plan cards ---------- */
.plan-card { cursor: pointer; text-align: left; }
.plan-card .plan-radio {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  cursor: pointer;
}
.plan-card.selected { border: 2px solid var(--accent); box-shadow: var(--shadow-lg); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 22px; color: var(--muted); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonial-slider { position: relative; max-width: 820px; margin: 0 auto; }
.testimonial {
  display: none;
  text-align: center;
  padding: 12px 36px;
}
.testimonial.active { display: block; animation: fadeIn 0.5s ease; }
.testimonial blockquote {
  font-size: 1.12rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 26px;
}
.testimonial .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
}
.testimonial .t-name { font-family: var(--font-heading); font-weight: 700; color: var(--navy); }
.testimonial .t-role { color: var(--muted); font-size: 0.88rem; }

.slider-nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.slider-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--primary), var(--accent-dark));
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  padding: 64px 32px;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: var(--light-blue); margin-bottom: 28px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
label .req { color: #d23c3c; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 125, 210, 0.15);
  background: var(--white);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; }
.form-feedback { margin-top: 14px; font-weight: 600; display: none; }
.form-feedback.success { display: block; color: var(--success); }
.form-feedback.error { display: block; color: #d23c3c; }

/* ---------- Sign-up page ---------- */
.signup-wrap { max-width: 900px; margin: 0 auto; }
.signup-card { padding: 48px; }
.signup-step-title { margin-bottom: 24px; }
.signup-step-title:not(:first-child) { margin-top: 44px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.checkbox-row label { margin-bottom: 0; font-family: var(--font-body); font-weight: 400; font-size: 0.92rem; color: var(--text); }
.signup-login-note { text-align: center; margin-top: 22px; font-size: 0.92rem; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--navy);
  color: var(--light-blue);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 22px; }
.contact-info-card .info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-card .info-row strong { color: var(--white); display: block; font-family: var(--font-heading); font-size: 0.9rem; }
.contact-info-card a { color: var(--light-blue); }
.contact-info-card a:hover { color: var(--white); }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); margin-top: 48px; }

/* ---------- Tables (Start-up bundle) ---------- */
.table-wrap { overflow-x: auto; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
table.compare th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
}
table.compare td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  vertical-align: top;
}
table.compare tr:nth-child(even) td { background: var(--bg-soft); }

/* ---------- Career ---------- */
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 16px;
  transition: box-shadow 0.25s ease;
}
.job-card:hover { box-shadow: var(--shadow); }
.job-card .job-meta { color: var(--muted); font-size: 0.88rem; }
.job-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-right: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #b8c7d6;
  padding: 72px 0 0;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer ul li { margin-bottom: 11px; }
.site-footer a { color: #b8c7d6; }
.site-footer a:hover { color: var(--white); }

.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--accent); color: var(--white); }

.newsletter-form { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.newsletter-input-row { display: flex; gap: 0; }
.newsletter-input-row input {
  border-radius: 50px 0 0 50px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.newsletter-input-row input::placeholder { color: #93a7ba; }
.newsletter-input-row button {
  border: 0;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0 24px;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.newsletter-input-row button:hover { background: var(--accent-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- Scroll to top ---------- */
#scrollTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 900;
  box-shadow: var(--shadow);
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ---------- WhatsApp chat button ---------- */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 900;
  transition: all 0.3s ease;
}
.whatsapp-float:hover { background: #1ebe5b; transform: translateY(-3px); color: #fff; }
@keyframes whatsappPop {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.2); }
  55% { transform: scale(0.94); }
  75% { transform: scale(1.08); }
}
.whatsapp-float.pop { animation: whatsappPop 0.7s ease; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .main-nav > li > a { padding: 26px 10px; font-size: 0.88rem; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 90px 0 40px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav > li > a { padding: 14px 28px; border-bottom: 1px solid var(--border); }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    max-height: 0;
    padding: 0;
    background: var(--bg-soft);
    transition: max-height 0.3s ease;
  }
  .has-dropdown.open .dropdown { visibility: visible; max-height: 500px; }
  .dropdown a { padding: 11px 40px; }

  .nav-cta .btn-outline { display: none; }

  .split, .contact-grid { grid-template-columns: 1fr; }
  .hero .container { flex-direction: column; align-items: stretch; }
  .hero h1 { max-width: none; }
  .hero-image { max-width: 340px; margin: 24px auto 0; }
  .grid-3, .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
