:root {
  --bg: #ffffff;
  --bg-color: #ffffff;
  --card-bg: #f5f5f7;
  --surface-bg: #fbfbfd;
  --primary: #2997ff;
  --primary-hover: #0071e3;
  --primary-btn-bg: #1670c9;
  --primary-btn-hover: #125ba3;
  --teal: #2997ff;
  --teal-light: #0071e3;
  --text-main: #1d1d1f;
  --text-muted: rgba(29, 29, 31, 0.56);
  --border-color: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.06);
  
  --grad-main: linear-gradient(135deg, #f5f5f7 0%, #2997ff 100%);
  --grad-teal: linear-gradient(135deg, #2997ff 0%, #0071e3 100%);
  
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-primary: 0 4px 20px rgba(41, 151, 255, 0.15);
  
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-btn-bg);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(41,151,255,.20);
}

.btn-primary:hover {
  background: var(--primary-btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,.25);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-hover);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 160px 0 96px;
  min-height: 620px;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Rotating Background Watermark */
.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 0.85;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero .overline,
.hero h1,
.hero p,
.hero .hero-btns,
.hero .hero-trust {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.80);
  max-width: 700px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero .overline {
  color: var(--primary);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.hero .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}
.hero .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero .trust-badge {
  color: rgba(255,255,255,0.65);
}
.hero .trust-divider {
  color: var(--primary);
}

@media (max-width: 768px) {
  .hero {
    min-height: 520px;
    padding: 140px 0 72px;
  }
  .hero h1 {
    font-size: 32px;
  }
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-surface {
  background: var(--surface-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.teal-bar {
  width: 48px;
  height: 3px;
  background: var(--grad-teal);
  border-radius: 2px;
  margin: 0 auto 24px;
}

/* Services Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

#cards-grid, #process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

.card:not(a) {
  cursor: default;
}

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

.card::before,
.card::after {
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  transition: opacity 500ms;
  width: 100%;
}

.card::before {
  background: radial-gradient(
    800px circle at var(--mouse-x) var(--mouse-y), 
    rgba(0, 0, 0, 0.03),
    transparent 40%
  );
  z-index: 3;
}

.card::after {  
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y), 
    var(--primary),
    transparent 40%
  );
  z-index: 1;
}

#cards-grid:hover > .card::after,
#pillars-grid:hover > .card::after,
#process-grid:hover > .card::after {
  opacity: 1;
}

.card:hover::before {
  opacity: 1;
}

.card-content {
  background-color: var(--card-bg);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 1px;
  padding: 40px 32px;
  position: relative;
  z-index: 2;
}

.card-icon {
  background: var(--grad-teal);
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.card-desc {
  color: var(--text-muted);
  font-size: 13.5px;
  text-align: left;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Card Image Styles */
.card.has-image .card-content {
  padding: 0;
  overflow: hidden;
}
.card-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
}
.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-image-wrap img {
  transform: scale(1.05);
}
.card.has-image .card-icon.floating {
  position: absolute;
  bottom: -28px;
  left: 32px;
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card.has-image .card-icon.floating svg {
  width: 24px;
  height: 24px;
}
.card.has-image .card-text {
  padding: 48px 24px 24px 24px;
}


/* Benefits Section */
.benefits-section {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.benefits-text .teal-bar {
  margin-left: 0;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad-teal);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--bg-color);
  margin-top: 4px;
  padding: 4px;
}
.benefit-icon svg {
  width: 14px;
  height: 14px;
}

.benefit-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-content p {
  color: var(--text-muted);
  font-size: 15px;
}

.benefits-image {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  height: 460px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.benefits-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-main);
  opacity: 0.1;
}

/* Contact Form Section */
.form-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.form-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 15px;
}
.form-badges i {
  color: #2FA8FF;
  width: 18px;
  height: 18px;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: relative;
}

.quote-form {
  padding: 40px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  background-color: #f5f5f7;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  color: #1d1d1f;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to bottom, #2FA8FF, #0062D2);
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 4px 15px rgba(0, 98, 210, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 6px 20px rgba(0, 98, 210, 0.6);
}

.form-footer {
  text-align: center;
  padding: 16px;
  background-color: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.form-footer a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}
.form-footer a:hover {
  color: var(--primary);
}

/* File Upload Group */
.file-upload-group label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 12px;
}
.file-drop-area {
  position: relative;
  border: 1px dashed var(--primary);
  border-radius: 8px;
  padding: 32px 16px;
  text-align: center;
  background: rgba(41, 151, 255, 0.05);
  cursor: pointer;
  transition: background 0.3s;
}
.file-drop-area:hover {
  background: rgba(41, 151, 255, 0.1);
}
.file-drop-area input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-drop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}
.file-drop-content i {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}
.file-drop-content .file-msg {
  font-size: 15px;
  font-weight: 500;
}
.file-drop-content .file-size {
  font-size: 13px;
  opacity: 0.8;
}

.btn-teal {
  background: var(--primary);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3);
}
.btn-teal:hover {
  background: #178c8b;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 6px 20px rgba(28, 167, 166, 0.4);
}

/* Footer */
footer {
  background-color: #1d1d1f;
  padding: 64px 0 32px;
  border-top: none;
  color: #f5f5f7;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(41,151,255,0.1);
}
.footer-socials i {
  width: 13px;
  height: 13px;
}

.footer-links h4 {
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  position: relative;
  padding-top: 16px;
  text-transform: uppercase;
}
.footer-links h4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a, .footer-links span {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 24px;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--transition);
}
.footer-legal a:hover {
  color: var(--primary);
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.3s ease;
}
.floating-wa:hover {
  transform: scale(1.1);
}

/* Animations & Trust Badges */
@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.trust-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-divider {
  color: var(--primary);
  font-weight: bold;
}

/* Process Section */
.process-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1;
}

/* Stats Section */
.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

/* Scroll Reveal */
.reveal, .reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: all .6s cubic-bezier(.4,0,.2,1);
}
.in-view {
  opacity: 1;
  transform: none;
}

/* Mobile Nav Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  /* Mobile Menu Styles */
  .desktop-cta { 
    display: none; 
  }
  
  .mobile-menu-btn { 
    display: block; 
    z-index: 201; 
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--card-bg);
    flex-direction: column;
    padding: 100px 24px 24px;
    gap: 1.5rem;
    transition: var(--transition);
    border-left: 1px solid var(--border-light);
    z-index: 200;
    box-shadow: var(--shadow-md);
  }
  
  .nav-links.active {
    right: 0;
  }

  .nav-links .nav-cta {
    display: inline-flex !important;
    margin-top: 1rem;
  }
  
  .container {
    padding: 0 24px;
  }

  .stat-item { 
    border-right: none; 
    border-bottom: 1px solid var(--border-light); 
    padding-bottom: 24px; 
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  background: #1d1d1f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: #f5f5f7;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-content p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}
.cookie-content p a {
  color: var(--primary-hover);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.btn-cookie {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  flex: 1;
}

.btn-accept {
  background: var(--primary);
  color: #fff;
}

.btn-accept:hover {
  background: var(--primary-hover);
}

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

.btn-reject:hover {
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
