* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a2d52;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand span {
  color: #0d9488;
}

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

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0a2d52;
  background: #f0f4ff;
}

.btn-nav {
  background: #0d9488;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.btn-nav:hover {
  background: #0f766e !important;
  color: #fff !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #0a2d52;
  padding: 8px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 12px 16px;
  }
  .mobile-toggle {
    display: block;
  }
}

/* ===== HERO FLAGS ===== */
.hero-flags {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-flags span {
  font-size: 0.75rem;
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust i {
  color: #0d9488;
}

/* ===== TRUST BAND ===== */
.trust-band {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}

.trust-band-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-band-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.trust-band-item i {
  font-size: 22px;
  color: #0d9488;
  width: 36px;
  text-align: center;
}

.trust-band-item strong {
  display: block;
  color: #0a2d52;
  font-weight: 600;
  font-size: 0.85rem;
}

.trust-band-item span {
  color: #6b7280;
  font-size: 0.8rem;
}

/* ===== SERVICE LINK ===== */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
  color: #0f766e;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1da951;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

/* ===== HERO ===== */
.hero {
  margin-top: 70px;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #0a2d52 0%, #0d9488 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .hero { padding: 60px 0; }
  .hero-grid { flex-direction: column; gap: 40px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-image { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn-primary {
  background: #fff;
  color: #0a2d52;
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-teal {
  background: #0d9488;
  color: #fff;
}

.btn-teal:hover {
  background: #0f766e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}

/* ===== SECTION ===== */
section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0d9488;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a2d52;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICES ===== */
.services-section {
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: #0d9488;
  box-shadow: 0 8px 30px rgba(13,148,136,0.1);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f0fdfa;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #0a2d52;
  margin-bottom: 8px;
}

.service-card p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.service-tag {
  font-size: 0.75rem;
  background: #f0fdfa;
  color: #0d9488;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* ===== PRICING ===== */
.pricing-section {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.price-card.featured {
  border: 2px solid #0d9488;
  box-shadow: 0 8px 30px rgba(13,148,136,0.12);
  transform: scale(1.02);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d9488;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card h3 {
  font-size: 1.3rem;
  color: #0a2d52;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a2d52;
  margin: 16px 0;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  flex-grow: 1;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '✓';
  color: #0d9488;
  font-weight: 700;
}

@media (max-width: 768px) {
  .price-card.featured { transform: none; }
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: #f8fafc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0fdfa;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: 1rem;
  color: #0a2d52;
  margin-bottom: 4px;
}

.why-text p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e5e7eb;
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.testimonial-card p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d9488;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: #0a2d52;
  font-size: 0.9rem;
}

.testimonial-role {
  color: #6b7280;
  font-size: 0.8rem;
}

/* ===== FAQ ===== */
.faq-section {
  background: #f8fafc;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #0a2d52;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question .icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: #0d9488;
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
  border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  border-top-color: #e5e7eb;
}

.faq-answer p {
  padding: 18px 24px;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0a2d52, #0d9488);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  margin-top: 70px;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a2d52;
  margin-bottom: 12px;
}

.page-header p {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: 60px 0;
}

.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-content-inner h2 {
  color: #0a2d52;
  margin: 40px 0 16px;
  font-size: 1.5rem;
}

.page-content-inner h3 {
  color: #0a2d52;
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

.page-content-inner p {
  color: #4a5568;
  margin-bottom: 16px;
}

.page-content-inner ul {
  margin: 10px 0 20px 24px;
  color: #4a5568;
}

.page-content-inner ul li {
  margin-bottom: 8px;
}

/* ===== CONTACT FORM ===== */
.contact-page {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #0a2d52;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border 0.2s, box-shadow 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}

.contact-info-wrap {
  padding: 40px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.contact-info-wrap h3 {
  color: #0a2d52;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.contact-info-item {
  margin-bottom: 20px;
}

.contact-info-item strong {
  display: block;
  color: #0a2d52;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: #0d9488;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form-wrap, .contact-info-wrap { padding: 24px; }
}

/* ===== FOOTER ===== */
footer {
  background: #0a2d52;
  color: #cbd5e1;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-brand strong {
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  margin-left: 20px;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

/* ===== GDPR COOKIE ===== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a2d52;
  color: #fff;
  padding: 14px 24px;
  z-index: 9999;
  display: none;
}

.cookie-bar.show {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.cookie-inner a {
  color: #0d9488;
  text-decoration: underline;
}

.cookie-btn {
  background: #0d9488;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: #0f766e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}
