/* ===== Variables ===== */
:root {
  --blue: #3FA7A6;
  --blue-dark: #358f8e;
  --blue-light: #6ec4c3;
  --blue-pale: #e8f6f6;
  --pink: #e91e8c;
  --pink-light: #ff4db8;
  --dark: #0a1628;
  --dark-soft: #111d33;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #1e293b;
  --whatsapp: #25d366;
  --shadow: 0 4px 24px rgba(63, 167, 166, 0.12);
  --shadow-lg: 0 12px 48px rgba(63, 167, 166, 0.18);
  --radius: 14px;
  --transition: 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  color: var(--pink);
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--blue-dark);
  color: var(--dark);
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.35);
  color: var(--blue-dark);
  border-color: var(--blue);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--blue-dark);
}

.btn-block {
  width: 100%;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar-ticker {
  position: relative;
  width: 100%;
  height: 22px;
  overflow: hidden;
  text-align: center;
}

.ticker-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.ticker-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ticker-slide.leaving {
  opacity: 0;
  transform: translateY(-14px);
}

.ticker-slogan {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--pink-light);
}

.ticker-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  transition: color var(--transition);
}

.ticker-phone:hover {
  color: var(--pink-light);
}

/* ===== Header ===== */
.header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.92);
}

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  margin-left: 8px;
  border-radius: 50px !important;
}

.nav-cta:hover {
  background: var(--pink-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(165deg, #b5e5e4 0%, #7ecbc9 30%, #3FA7A6 65%, #358f8e 100%);
  color: var(--gray-800);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(233, 30, 140, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(63, 167, 166, 0.35);
  color: var(--blue-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-highlight {
  color: #f012be;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-800);
  opacity: 0.9;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-item strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(10, 60, 59, 0.25);
}

.hero-trust-item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  opacity: 1;
}

.hero-visual {
  position: relative;
  height: 470px;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

.hero-card {
  position: absolute;
  width: 228px;
  background: linear-gradient(145deg, rgba(207, 237, 236, 0.92), rgba(176, 220, 219, 0.88));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  will-change: transform;
  box-shadow: 0 10px 32px rgba(21, 90, 89, 0.22);
  color: #0c3534;
}

.hero-card-icon {
  font-size: 1.65rem;
  margin-bottom: 2px;
  filter: saturate(1.15);
}

.hero-card strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #083130;
}

.hero-card span {
  font-size: 0.8rem;
  color: #1a5655;
  opacity: 1;
  font-weight: 500;
}

.hero-card-1 {
  top: 0;
  left: 0;
  animation: drift1 20s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.hero-card-2 {
  top: 4px;
  right: 0;
  background: linear-gradient(145deg, rgba(225, 244, 243, 0.94), rgba(190, 228, 227, 0.9));
  border-color: rgba(233, 30, 140, 0.3);
  animation: drift2 22s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: -5s;
}

.hero-card-3 {
  top: 33%;
  left: 0;
  animation: drift3 18s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: -9s;
}

.hero-card-4 {
  top: 33%;
  right: 0;
  background: linear-gradient(145deg, rgba(200, 235, 234, 0.93), rgba(168, 215, 214, 0.89));
  border-color: rgba(63, 167, 166, 0.45);
  animation: drift4 24s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: -3s;
}

.hero-card-5 {
  bottom: 18px;
  left: 0;
  background: linear-gradient(145deg, rgba(228, 242, 241, 0.94), rgba(198, 230, 229, 0.9));
  border-color: rgba(233, 30, 140, 0.28);
  animation: drift5 21s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: -7s;
}

.hero-card-6 {
  bottom: 0;
  right: 0;
  background: linear-gradient(145deg, rgba(195, 232, 231, 0.92), rgba(160, 210, 209, 0.88));
  border-color: rgba(53, 143, 142, 0.4);
  animation: drift6 23s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: -11s;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  25% { transform: translate(5px, -8px) rotate(1deg); }
  50% { transform: translate(-4px, -5px) rotate(-2deg); }
  75% { transform: translate(3px, 4px) rotate(0deg); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) rotate(2deg); }
  25% { transform: translate(-6px, 5px) rotate(-1deg); }
  50% { transform: translate(4px, -7px) rotate(2deg); }
  75% { transform: translate(-3px, -3px) rotate(0deg); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  33% { transform: translate(7px, -6px) rotate(1deg); }
  66% { transform: translate(-5px, 5px) rotate(-2deg); }
}

@keyframes drift4 {
  0%, 100% { transform: translate(0, 0) rotate(1deg); }
  20% { transform: translate(-4px, -9px) rotate(-1deg); }
  40% { transform: translate(6px, -3px) rotate(2deg); }
  60% { transform: translate(-2px, 6px) rotate(0deg); }
  80% { transform: translate(4px, -4px) rotate(1deg); }
}

@keyframes drift5 {
  0%, 100% { transform: translate(0, 0) rotate(2deg); }
  30% { transform: translate(5px, -5px) rotate(-1deg); }
  60% { transform: translate(-6px, -8px) rotate(2deg); }
}

@keyframes drift6 {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  25% { transform: translate(-5px, -6px) rotate(1deg); }
  50% { transform: translate(4px, 7px) rotate(-3deg); }
  75% { transform: translate(6px, -4px) rotate(0deg); }
}

/* ===== Stats Band ===== */
.stats-band {
  background: var(--dark);
  padding: 48px 0;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--pink-light);
  background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== Sections ===== */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(63, 167, 166, 0.12));
  color: var(--pink);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--dark);
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ===== Packages Intro ===== */
.packages-intro {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.packages-intro-text {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.packages-intro-text strong {
  color: var(--dark);
  font-weight: 700;
}

.packages-intro-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(63, 167, 166, 0.08), rgba(240, 18, 190, 0.08));
  border: 1px solid rgba(63, 167, 166, 0.18);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

/* ===== Packages ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}

.package-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.package-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.package-badge-pro {
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.package-badge-eco {
  background: var(--dark);
}

.package-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.package-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.package-subtitle {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.package-delivery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(63, 167, 166, 0.1);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.package-features {
  margin-bottom: 28px;
}

.package-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-features li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Sectors ===== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sector-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: default;
}

.sector-card:hover {
  border-color: var(--blue-light);
  background: linear-gradient(135deg, rgba(63, 167, 166, 0.06), rgba(233, 30, 140, 0.04));
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.sector-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ===== Testimonials ===== */
.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials-track {
  flex: 1;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.section-alt + .section .testimonial-card,
#yorumlar .testimonial-card {
  background: var(--gray-50);
}

#yorumlar .testimonial-card {
  background: var(--white);
  box-shadow: var(--shadow);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all var(--transition);
  flex-shrink: 0;
}

.testimonial-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(63, 167, 166, 0.08);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--blue);
  width: 28px;
  border-radius: 5px;
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
}

.step-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  margin-top: 48px;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 400;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card-icon-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.contact-wa-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-wa-link:hover {
  color: var(--whatsapp);
}

.contact-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--gray-800);
  line-height: 1.6;
}

.contact-card a {
  color: var(--blue);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--pink);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img {
  margin-bottom: 16px;
  border-radius: 6px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--pink-light);
}

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--pink-light);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* ===== Scroll Top ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 9998;
  box-shadow: var(--shadow);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

/* ===== Form Success ===== */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-600);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    height: 420px;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-card {
    width: 198px;
    padding: 16px 14px;
  }

  .hero-card strong {
    font-size: 0.9rem;
  }

  .hero-card span {
    font-size: 0.74rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .package-featured {
    transform: none;
  }

  .package-featured:hover {
    transform: translateY(-4px);
  }

  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .step-connector {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    padding: 16px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .section {
    padding: 64px 0;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonial-btn {
    display: none;
  }

  .scroll-top {
    right: 28px;
    bottom: 100px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .sectors-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    padding: 24px 20px;
  }
}
