/* ============================================================
   PharmaCare Landing Page — Styles
   ============================================================ */

/* ---- Variables ---- */
:root {
  --navy: #1B365D;
  --navy-mid: #24477a;
  --green: #66d8f2;
  --green-mid: #d97777;
  --mint: #f2b6b6;
  --mint-soft: #eef9f4;
  --text: #313131;
  --text-mid: #5e6778;
  --white: #ffffff;
  --light-bg: #f4f8f5;
  --border: #e0e8e4;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(27, 54, 93, .08);
  --transition: .3s ease;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-mid);
  box-shadow: 0 6px 20px rgba(43, 181, 115, .3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---- Section Labels ---- */
.section-tag--light {
  background: rgba(200, 247, 228, .15);
  color: var(--mint);
}

.section-tag--light::before {
  background: var(--mint);
}

.section-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: .4px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

/* ---- Section Headings ---- */
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.section-desc {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
}

/* ---- Fade-in animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .85);
  transition: color var(--transition);
}

.topbar-info a:hover {
  color: var(--mint);
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  transition: background var(--transition);
}

.topbar-socials a:hover {
  background: var(--green);
}

.topbar-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27, 54, 93, .08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.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: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity 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 Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 80px 24px 32px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--green);
}

.mobile-nav .btn {
  display: inline-flex;
  margin-top: 16px;
  justify-content: center;
  padding: 12px 28px;
  border-bottom: none;
  font-size: 15px;
}

.mobile-nav .btn-primary {
  color: var(--white);
}

.mobile-nav .btn-primary:hover {
  color: var(--white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background-image: url('../img/pasti.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 40%, rgba(27, 54, 93, 0.15) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.hero-desc {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .2);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust img {
  height: 44px;
  width: auto;
}

.hero-trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4;
}

.hero-trust-text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
}

/* The right column is intentionally empty — the banner shows through the gradient */
.hero-visual {
  display: none;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

/* Stats row */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  margin-top: 4px;
}

/* Call us card */
.callus-card {
  background: var(--mint-soft);
  border: 1px solid var(--mint);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.callus-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callus-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--mint);
}

.callus-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.callus-subtitle {
  font-size: 13px;
  color: var(--text-mid);
}

/* Progress bars */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.progress-item {}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.progress-bar {
  height: 8px;
  background: var(--mint);
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 50px;
  width: 0;
  transition: width 1.2s ease;
}

/* Feature badges */
.feature-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-badge {
  background: var(--mint-soft);
  border: 1px solid var(--mint);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-badge::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--navy);
  padding: 100px 0;
}

.services .section-title {
  color: var(--white);
}

.services .section-desc {
  color: rgba(255, 255, 255, .7);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.services .section-tag {
  background: rgba(200, 247, 228, .15);
  color: var(--mint);
}

.services .section-tag::before {
  background: var(--mint);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--green);
  transform: translateY(-4px);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--mint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--navy);
}

.service-name {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 100px 0;
}

.how-it-works .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-images {
  position: relative;
  height: 500px;
  flex-shrink: 0;
}

.how-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.how-img-secondary {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 56%;
  border-radius: 16px;
  border: 6px solid var(--white);
  box-shadow: 0 12px 40px rgba(27, 54, 93, .18);
  object-fit: cover;
}

.how-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--mint);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-body {}

.step-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 2px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-mid);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
  padding: 100px 0;
  background-image: url('../img/pasti.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(27, 54, 93, 0.88) 20%, rgba(27, 54, 93, 0.92) 50%, rgba(27, 54, 93, 0.88) 80%, transparent 100%);
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-tag {
  margin: 0 auto 14px;
}

.testimonials-header .section-title {
  color: var(--white);
}

.testimonials-header .section-desc {
  margin: 12px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, .75);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-photo {
  width: 140px;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-icon {
  color: var(--navy);
  font-size: 48px;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

.testimonial-divider {
  height: 1px;
  background: var(--border);
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-mid);
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  padding: 100px 0;
}

.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-info {
  padding: 18px 16px;
}

.team-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}

.team-role {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 2px;
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
}

.cta-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-section .section-tag {
  background: rgba(200, 247, 228, .15);
  color: var(--mint);
}

.cta-section .section-tag::before {
  background: var(--mint);
}

.cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.cta-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 500;
}

.cta-check svg {
  width: 18px;
  height: 18px;
  fill: var(--mint);
  flex-shrink: 0;
}

.cta-image img {
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 100px 0;
  background: var(--light-bg);
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-cta .section-desc {
  max-width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--green);
  background: var(--mint-soft);
}

.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-mid);
}

.pricing-divider {
  height: 1px;
  background: var(--border);
}

.pricing-price {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-price span {
  font-size: 18px;
}

.pricing-note {
  font-size: 14px;
  color: var(--text-mid);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.pricing-feature::before {
  content: '•';
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog {
  padding: 100px 0;
}

.blog-header {
  text-align: center;
  margin-bottom: 56px;
}

.blog-header .section-tag {
  margin: 0 auto 14px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.blog-thumb {
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
}

.blog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-date {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
}

.blog-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  transition: color var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--green);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--transition);
}

.blog-link:hover {
  gap: 10px;
}

/* ============================================================
   CONTACT FORM + MAP
   ============================================================ */
.contact-section {
  background: var(--light-bg);
}

.contact-map {
  width: 100%;
  line-height: 0;
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  display: block;
}

.contact-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(27, 54, 93, .12);
  padding: 48px 56px;
  max-width: 860px;
  margin: -60px auto 0;
  position: relative;
  z-index: 2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(43, 181, 115, .12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-mid);
}

.contact-submit {
  align-self: center;
  padding: 14px 48px;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .8);
  padding: 70px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-newsletter-title {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-newsletter-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
}

.footer-form {
  display: flex;
  gap: 10px;
}

.footer-form input {
  flex: 1;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.footer-form input:focus {
  border-color: var(--green);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 50px 0 40px;
}

.footer-col-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .65);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--mint);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--mint);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  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, .45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar-info {
    font-size: 12px;
    gap: 12px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 80px 0 70px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(27, 54, 93, 0.92) 0%, rgba(27, 54, 93, 0.75) 100%);
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .how-it-works .container {
    grid-template-columns: 1fr;
  }

  .how-images {
    height: 280px;
    margin-bottom: 60px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-direction: column;
  }

  .testimonial-photo {
    width: 100%;
    height: 200px;
  }

  .cta-section .container {
    grid-template-columns: 1fr;
  }

  .cta-image {
    display: none;
  }

  .pricing-header {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-badges {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-form {
    flex-direction: column;
  }
}