/*===== RESET & BASE =====*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6
}

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

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

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
select,
textarea {
  font-family: inherit
}

::selection {
  background-color: rgba(0, 102, 179, .2);
  color: #004d87
}

*:focus-visible {
  outline: 2px solid #0066b3;
  outline-offset: 2px;
  border-radius: 4px
}

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background: #f1f1f1
}

::-webkit-scrollbar-thumb {
  background: #0066b3;
  border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
  background: #004d87
}

/*===== VARIABLES =====*/
:root {
  --primary: #0066b3;
  --primary-dark: #004d87;
  --primary-light: #e6f0fa;
  --secondary: #ff6b00;
  --secondary-dark: #cc5500;
  --dark: #1a1a2e;
  --dark-light: #2d2d44;
  --gray-bg: #f5f7fa;
  --white: #ffffff;
}

/*===== UTILITY CLASSES =====*/
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.text-primary {
  color: var(--primary)
}

.text-secondary {
  color: var(--secondary)
}

.text-dark {
  color: var(--dark)
}

.text-dark-light {
  color: var(--dark-light)
}

.text-white {
  color: #fff
}

.bg-primary {
  background: var(--primary)
}

.bg-secondary {
  background: var(--secondary)
}

.bg-dark {
  background: var(--dark)
}

.bg-gray-bg {
  background: var(--gray-bg)
}

.bg-white {
  background: #fff
}

.font-bold {
  font-weight: 700
}

.font-semibold {
  font-weight: 600
}

.font-medium {
  font-weight: 500
}

.uppercase {
  text-transform: uppercase
}

.tracking-wider {
  letter-spacing: .05em
}

.rounded-lg {
  border-radius: .5rem
}

.rounded-xl {
  border-radius: .75rem
}

.rounded-2xl {
  border-radius: 1rem
}

.rounded-full {
  border-radius: 9999px
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1)
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1)
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25)
}

.transition-all {
  transition: all .3s ease
}

.flex {
  display: flex
}

.inline-flex {
  display: inline-flex
}

.grid {
  display: grid
}

.block {
  display: block
}

.hidden {
  display: none
}

.items-center {
  align-items: center
}

.items-start {
  align-items: start
}

.justify-center {
  justify-content: center
}

.justify-between {
  justify-content: space-between
}

.gap-1 {
  gap: .25rem
}

.gap-2 {
  gap: .5rem
}

.gap-3 {
  gap: .75rem
}

.gap-4 {
  gap: 1rem
}

.gap-5 {
  gap: 1.25rem
}

.gap-6 {
  gap: 1.5rem
}

.gap-8 {
  gap: 2rem
}

.gap-12 {
  gap: 3rem
}

.gap-16 {
  gap: 4rem
}

.flex-1 {
  flex: 1
}

.flex-shrink-0 {
  flex-shrink: 0
}

.flex-col {
  flex-direction: column
}

.relative {
  position: relative
}

.absolute {
  position: absolute
}

.fixed {
  position: fixed
}

.sticky {
  position: sticky
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.top-0 {
  top: 0
}

.bottom-0 {
  bottom: 0
}

.left-0 {
  left: 0
}

.right-0 {
  right: 0
}

.z-10 {
  z-index: 10
}

.z-50 {
  z-index: 50
}

.w-full {
  width: 100%
}

.h-full {
  height: 100%
}

.min-h-screen {
  min-height: 100vh
}

.overflow-hidden {
  overflow: hidden
}

.overflow-x-hidden {
  overflow-x: hidden
}

.object-cover {
  object-fit: cover
}

.text-center {
  text-align: center
}

.text-left {
  text-align: left
}

.text-xs {
  font-size: .75rem
}

.text-sm {
  font-size: .875rem
}

.text-base {
  font-size: 1rem
}

.text-lg {
  font-size: 1.125rem
}

.text-xl {
  font-size: 1.25rem
}

.text-2xl {
  font-size: 1.5rem
}

.text-3xl {
  font-size: 1.875rem
}

.text-4xl {
  font-size: 2.25rem
}

.text-5xl {
  font-size: 3rem
}

.leading-tight {
  line-height: 1.25
}

.leading-relaxed {
  line-height: 1.75
}

.mb-2 {
  margin-bottom: .5rem
}

.mb-3 {
  margin-bottom: .75rem
}

.mb-4 {
  margin-bottom: 1rem
}

.mb-5 {
  margin-bottom: 1.25rem
}

.mb-6 {
  margin-bottom: 1.5rem
}

.mb-8 {
  margin-bottom: 2rem
}

.mt-1 {
  margin-top: .25rem
}

.mt-3 {
  margin-top: .75rem
}

.mt-4 {
  margin-top: 1rem
}

.mt-8 {
  margin-top: 2rem
}

.mt-12 {
  margin-top: 3rem
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.p-4 {
  padding: 1rem
}

.p-5 {
  padding: 1.25rem
}

.p-6 {
  padding: 1.5rem
}

.p-8 {
  padding: 2rem
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem
}

.py-3 {
  padding-top: .75rem;
  padding-bottom: .75rem
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem
}

.space-y-1>*+* {
  margin-top: .25rem
}

.space-y-3>*+* {
  margin-top: .75rem
}

.space-y-4>*+* {
  margin-top: 1rem
}

.space-y-5>*+* {
  margin-top: 1.25rem
}

.space-y-6>*+* {
  margin-top: 1.5rem
}

.border-t {
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.max-w-xl {
  max-width: 36rem
}

.max-w-2xl {
  max-width: 42rem
}

.max-w-4xl {
  max-width: 56rem
}

.max-w-7xl {
  max-width: 80rem
}

.whitespace-nowrap {
  white-space: nowrap
}

.pointer-events-none {
  pointer-events: none
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

/*===== TOP BAR =====*/
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: .875rem
}

.topbar a:hover {
  color: var(--secondary)
}

.topbar .icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 6px
}

/*===== HEADER =====*/
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  transition: all .3s
}

.main-header.scrolled {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2
}

.logo-text p {
  font-size: .7rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em
}

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

.desktop-nav a {
  padding: 8px 16px;
  color: var(--dark-light);
  font-weight: 500;
  position: relative;
  transition: color .3s
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .3s
}

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

.desktop-nav a:hover::after {
  width: 100%
}

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all .3s
}

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

.btn-secondary:hover {
  background: var(--secondary-dark);
  box-shadow: 0 8px 20px rgba(255, 107, 0, .3)
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(0, 102, 179, .3)
}

.mobile-toggle {
  display: none;
  padding: 8px;
  color: var(--dark)
}

.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease
}

.mobile-menu.open {
  max-height: 600px
}

.mobile-menu-inner {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 16px
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--dark-light);
  font-weight: 500;
  border-radius: 8px;
  transition: all .2s
}

.mobile-menu a:hover {
  color: var(--primary);
  background: var(--primary-light)
}

/*===== HERO =====*/
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 46, .9), rgba(26, 26, 46, .7), rgba(26, 26, 46, .3))
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 640px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, .2);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 107, 0, .3);
  backdrop-filter: blur(4px);
  margin-bottom: 24px
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite
}

.hero h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px
}

.hero h2 span {
  color: var(--secondary)
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 560px
}

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

.hero-buttons .btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(4px)
}

.hero-buttons .btn-ghost:hover {
  background: rgba(255, 255, 255, .2)
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px
}

.hero-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1)
}

.hero-card .value {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.5rem
}

.hero-card .label {
  color: rgba(255, 255, 255, .8);
  font-size: .875rem
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0
}

.hero-wave svg {
  display: block;
  width: 100%
}

/*===== FEATURES =====*/
.features {
  padding: 0;
  margin-top: -1px;
  position: relative;
  z-index: 10
}

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

.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all .5s;
  opacity: 0;
  transform: translateY(30px)
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0)
}

.feature-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  transform: translateY(-4px)
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 102, 179, .1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary)
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px
}

.feature-card p {
  color: #666;
  line-height: 1.6
}

/*===== SECTION TITLES =====*/
.section-subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3
}

.section-title span {
  color: var(--primary)
}

.section-desc {
  color: #666;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6
}

/*===== ABOUT =====*/
.about {
  padding: 80px 0;
  background: #fff
}

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

.about-img-wrap {
  position: relative
}

.about-img-wrap img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .2)
}

.about-badge .num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1
}

.about-badge .txt {
  font-size: .875rem;
  font-weight: 500;
  margin-top: 4px
}

.about-decor {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 96px;
  height: 96px;
  border: 4px solid var(--secondary);
  border-radius: 16px;
  z-index: -1
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: #555
}

.check-item svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0
}

.progress-wrap {
  margin-bottom: 16px
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px
}

.progress-label span:first-child {
  font-weight: 600;
  color: var(--dark)
}

.progress-label span:last-child {
  font-weight: 700;
  color: var(--primary)
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 9999px;
  width: 0;
  transition: width 1.5s ease-out
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--primary-light);
  border-radius: 16px;
  margin-top: 32px
}

.about-phone .phone-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.about-phone .phone-icon svg {
  width: 24px;
  height: 24px;
  color: #fff
}

.about-phone .phone-label {
  font-size: .875rem;
  color: #666
}

.about-phone a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: color .3s
}

.about-phone a:hover {
  color: var(--primary-dark)
}

/*===== SERVICES =====*/
.services {
  padding: 80px 0;
  background: var(--gray-bg)
}

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

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  cursor: pointer;
  transition: all .5s;
  opacity: 0;
  transform: translateY(30px)
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0)
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12)
}

.service-img {
  position: relative;
  height: 224px;
  overflow: hidden
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.service-card:hover .service-img img {
  transform: scale(1.1)
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 102, 179, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s
}

.service-card:hover .service-overlay {
  opacity: 1
}

.service-overlay .circle {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.service-overlay .circle svg {
  width: 24px;
  height: 24px;
  color: var(--primary)
}

.service-body {
  padding: 24px
}

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 102, 179, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s
}

.service-card:hover .service-icon {
  background: var(--primary)
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: color .3s
}

.service-card:hover .service-icon svg {
  color: #fff
}

.service-body h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark)
}

.service-body p {
  color: #666;
  line-height: 1.6
}

/*===== CTA BANNER =====*/
.cta-banner {
  position: relative;
  padding: 96px 0;
  overflow: hidden
}

.cta-banner .bg {
  position: absolute;
  inset: 0
}

.cta-banner .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta-banner .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 102, 179, .9), rgba(26, 26, 46, .8))
}

.cta-banner .pattern {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 30px 30px
}

.cta-banner .content {
  position: relative;
  z-index: 10;
  text-align: center
}

.cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3
}

.cta-banner h2 span {
  color: var(--secondary)
}

.cta-banner .desc {
  color: rgba(255, 255, 255, .8);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto 32px
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center
}

/*===== STATS =====*/
.stats {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden
}

.stats-circle1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(0, 102, 179, .1);
  border-radius: 50%;
  transform: translate(-50%, -50%)
}

.stats-circle2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(255, 107, 0, .05);
  border-radius: 50%;
  transform: translate(33%, 33%)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 10
}

.stat-item {
  text-align: center
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: #fff
}

.stat-label {
  margin-top: 12px;
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .875rem
}

.stat-line {
  width: 48px;
  height: 4px;
  background: var(--secondary);
  margin: 16px auto 0;
  border-radius: 9999px
}

/*===== WHY US =====*/
.why-us {
  padding: 80px 0;
  background: #fff
}

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

.why-card {
  padding: 32px;
  border-radius: 16px;
  border: 2px solid #f3f4f6;
  transition: all .5s;
  opacity: 0;
  transform: translateY(30px)
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0)
}

.why-card:hover {
  border-color: rgba(0, 102, 179, .3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  transform: translateY(-4px)
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 102, 179, .1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all .3s
}

.why-card:hover .why-icon {
  background: var(--primary);
  transform: scale(1.1)
}

.why-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  transition: color .3s
}

.why-card:hover .why-icon svg {
  color: #fff
}

.why-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px
}

.why-card p {
  color: #666;
  line-height: 1.6
}

/*===== PROJECTS =====*/
.projects {
  padding: 80px 0;
  background: var(--gray-bg)
}

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

.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: all .5s
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0)
}

.project-card .img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.project-card:hover img {
  transform: scale(1.1)
}

.project-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, .9), rgba(26, 26, 46, .2), transparent);
  opacity: .8;
  transition: opacity .3s
}

.project-card:hover .overlay {
  opacity: 1
}

.project-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  transform: translateY(8px);
  transition: transform .3s
}

.project-card:hover .info {
  transform: translateY(0)
}

.project-card .cat {
  color: var(--secondary);
  font-size: .875rem;
  font-weight: 600
}

.project-card h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 4px
}

/*===== SECOND CTA =====*/
.second-cta {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden
}

.second-cta .deco1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  transform: translate(50%, -50%)
}

.second-cta .deco2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 288px;
  height: 288px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  transform: translate(-33%, 33%)
}

.second-cta .deco3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%
}

.second-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10
}

.second-cta h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3
}

.second-cta .desc {
  color: rgba(255, 255, 255, .8);
  font-size: 1.125rem;
  line-height: 1.6
}

.second-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end
}

.btn-white {
  background: #fff;
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-white:hover {
  background: #f3f4f6
}

/*===== TESTIMONIALS =====*/
.testimonials {
  padding: 80px 0;
  background: var(--gray-bg)
}

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

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
  position: relative;
  transition: all .5s;
  opacity: 0;
  transform: translateY(30px)
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0)
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(0, 102, 179, .1)
}

.quote-icon svg {
  width: 48px;
  height: 48px
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary);
  color: var(--secondary)
}

.testimonial-card .text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .875rem
}

.author-info h5 {
  font-weight: 700;
  color: var(--dark)
}

.author-info p {
  font-size: .875rem;
  color: #999
}

/*===== SERVICE AREAS =====*/
.service-areas {
  padding: 64px 0;
  background: #fff
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px
}

.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: var(--gray-bg);
  border-radius: 12px;
  transition: all .3s;
  cursor: pointer;
  font-weight: 500;
  font-size: .875rem;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px)
}

.area-item.visible {
  opacity: 1;
  transform: translateY(0)
}

.area-item:hover {
  background: var(--primary);
  color: #fff
}

.area-item:hover svg {
  color: #fff !important
}

.area-item svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
  transition: color .3s
}

/*===== CONTACT =====*/
.contact {
  padding: 80px 0;
  background: #fff
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  height: 256px
}

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

.contact-info {
  background: var(--primary);
  border-radius: 16px;
  padding: 32px;
  color: #fff
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s
}

.contact-info-item:hover .contact-info-icon {
  background: var(--secondary)
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: #fff
}

.contact-info-label {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7)
}

.contact-info-value {
  font-weight: 600;
  font-size: 1.125rem
}

.contact-form-wrap {
  background: var(--gray-bg);
  border-radius: 16px;
  padding: 32px
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.form-group {
  margin-bottom: 0
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: all .3s;
  background: #fff;
  font-size: 1rem
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 179, .15)
}

.form-group textarea {
  resize: none
}

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all .3s;
  border: none;
  cursor: pointer
}

.btn-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(0, 102, 179, .3);
  transform: translateY(-2px)
}

/*===== FOOTER =====*/
.footer {
  background: var(--dark);
  color: #fff;
  padding: 64px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 48px
}

.footer-about p {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 24px
}

.social-links {
  display: flex;
  gap: 12px
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase
}

.social-links a:hover {
  background: var(--primary)
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary)
}

.footer ul {
  margin-top: 16px
}

.footer ul li {
  margin-bottom: 12px
}

.footer ul a {
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .3s
}

.footer ul a:hover {
  color: var(--secondary)
}

.footer ul a svg {
  width: 14px;
  height: 14px
}

.footer-contact .item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #9ca3af;
  margin-bottom: 16px
}

.footer-contact .item:hover {
  color: var(--secondary)
}

.footer-contact .item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px
}

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

.footer-bottom p {
  color: #6b7280;
  font-size: .875rem
}

.footer-legal {
  display: flex;
  gap: 8px;
  color: #6b7280;
  font-size: .875rem
}

/*===== FLOATING BUTTONS =====*/
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: all .3s
}

.float-whatsapp:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5)
}

.float-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #fff
}

.float-whatsapp .tooltip {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  background: var(--dark);
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none
}

.float-whatsapp:hover .tooltip {
  opacity: 1
}

.float-phone {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 102, 179, .4);
  transition: all .3s
}

.float-phone:hover {
  background: var(--primary-dark);
  transform: scale(1.1)
}

.float-phone svg {
  width: 28px;
  height: 28px;
  color: #fff;
  animation: phone-ring 2s ease-in-out infinite;
  transform-origin: center
}

@keyframes phone-ring {
  0% {
    transform: rotate(0)
  }

  10% {
    transform: rotate(14deg)
  }

  20% {
    transform: rotate(-8deg)
  }

  30% {
    transform: rotate(14deg)
  }

  40% {
    transform: rotate(-4deg)
  }

  50% {
    transform: rotate(10deg)
  }

  60%,
  100% {
    transform: rotate(0)
  }
}

.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 50;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
  transition: all .3s;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto
}

.scroll-top:hover {
  background: var(--primary-dark)
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  color: #fff
}

/*===== COOKIE BANNER =====*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 16px;
  animation: slideUp .4s ease-out;
  display: none
}

.cookie-banner.show {
  display: block
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.cookie-inner {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .1)
}

.cookie-inner p {
  color: #d1d5db;
  font-size: .875rem;
  line-height: 1.6;
  flex: 1
}

.cookie-inner button.accept {
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .875rem;
  transition: background .3s
}

.cookie-inner button.accept:hover {
  background: var(--primary-dark)
}

.cookie-inner button.close {
  color: #9ca3af;
  padding: 8px;
  transition: color .3s
}

.cookie-inner button.close:hover {
  color: #fff
}

/*===== RESPONSIVE =====*/
@media(max-width:1024px) {

  .desktop-nav,
  .header-cta {
    display: none
  }

  .mobile-toggle {
    display: block
  }

  .mobile-menu {
    display: block
  }

  .topbar {
    display: none
  }

  .hero h2 {
    font-size: 2.25rem
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .about-badge {
    right: 16px;
    bottom: -16px
  }

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

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

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

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

  .second-cta-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .second-cta-btns {
    justify-content: center
  }

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

  .areas-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

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

  .float-phone {
    display: flex
  }
}

@media(max-width:768px) {
  .hero-cards {
    grid-template-columns: 1fr
  }

  .services-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr
  }

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

  .form-row {
    grid-template-columns: 1fr
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .cta-banner h2 {
    font-size: 1.75rem
  }

  .hero h2 {
    font-size: 2rem
  }

  .section-title {
    font-size: 1.75rem
  }

  .stat-value {
    font-size: 2rem
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch
  }
}

@media(max-width:480px) {
  .hero {
    min-height: 80vh
  }

  .hero h2 {
    font-size: 1.75rem
  }

  .hero-cards {
    grid-template-columns: 1fr
  }

  .projects-grid {
    grid-template-columns: 1fr
  }

  .areas-grid {
    grid-template-columns: 1fr
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }
}

/*===== DAIKIN DIFFERENCE =====*/
.daikin-difference {
  padding: 80px 0;
  background: linear-gradient(135deg, #f4f9fd 0%, #e8f3fc 100%);
  position: relative;
  overflow: hidden;
}

.daikin-difference::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(0, 102, 179, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.daikin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .daikin-grid {
    grid-template-columns: 1fr;
  }
}

.daikin-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 102, 179, 0.03);
  border: 1px solid rgba(0, 102, 179, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(35px);
}

.daikin-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.daikin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 179, 0.08);
  border-color: rgba(0, 102, 179, 0.2);
}

.daikin-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 179, 0.07);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.daikin-card:hover .daikin-card-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.daikin-card-icon svg {
  width: 28px;
  height: 28px;
}

.daikin-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.daikin-card:hover h3 {
  color: var(--primary);
}

.daikin-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* Highlight Banner inside section */
.daikin-promo-banner {
  background: var(--dark);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .daikin-promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
}

.daikin-promo-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.daikin-promo-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 600px;
}

.daikin-promo-btn {
  flex-shrink: 0;
}

@media print {

  header,
  footer,
  .fixed,
  .sticky,
  .float-whatsapp,
  .float-phone,
  .scroll-top,
  .cookie-banner {
    display: none !important
  }

  body {
    color: #000;
    background: #fff
  }
}
