/* ============================================================
   İK PARTNER — Master Stylesheet
   ============================================================ */

/* 1. RESET & TOKEN SYSTEM
   2. BASE STYLES
   3. UTILITIES
   4. BUTTONS
   5. LOADER
   6. HEADER
   7. HERO
   8. TRUST BAR
   9. STATS BAND
  10. SERVICES
  11. WHY US
  12. PROCESS
  13. PRICING
  14. TESTIMONIALS
  15. BLOG
  16. CONTACT
  17. FOOTER
  18. ANIMATIONS & SCROLL
  19. RESPONSIVE
*/

/* ── 1. RESET & TOKEN SYSTEM ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --navy: #0F172A;
  --navy-800: #1E293B;
  --navy-700: #334155;
  --navy-600: #475569;
  --gold: #D4AF37;
  --gold-dark: #B8941E;
  --gold-light: rgba(212, 175, 55, .12);

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #64748B;

  /* Typography */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-gap: clamp(5rem, 8vw, 7rem);

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .14);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .18);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, .35);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-normal: 0.3s ease;
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. BASE STYLES ── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--navy-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: #FFFFFF;
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

p {
  color: var(--navy-600);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

input,
select,
textarea,
button {
  font-family: var(--font-body);
}

/* ── 3. UTILITIES ── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-gap {
  padding: var(--section-gap) 0;
}

.bg-light-section {
  background: var(--gray-50);
}

.bg-dark-section {
  background: var(--navy);
}

.text-white {
  color: var(--white) !important;
}

.text-muted {
  color: rgba(255, 255, 255, .65) !important;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.section-intro {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-intro h2 {
  margin-top: .5rem;
  margin-bottom: 1rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, .25);
  padding: .3rem .9rem;
  border-radius: var(--r-full);
}

.section-label.light {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
}

/* ── 4. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem 1.6rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t-normal);
  white-space: nowrap;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

.btn-accent {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, .5);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .6);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-200, #cbd5e1);
  border: 2px solid var(--gray-200);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── 5. PAGE LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  text-align: center;
}

.loader-logo img {
  width: 64px;
  margin: 0 auto 1rem;
  border-radius: var(--r-sm);
}

.loader-bar {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  border-radius: var(--r-full);
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: var(--r-full);
  animation: loadProgress 1.2s ease-out forwards;
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

/* ── 6. HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--t-normal);
}

.site-header.scrolled {
  background: rgba(15, 23, 42, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .8rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}

.site-logo img {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.site-logo strong {
  font-weight: 800;
  color: var(--gold);
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--t-normal);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  font-weight: 500;
}

.header-phone:hover {
  color: var(--gold);
}

.header-phone i {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t-normal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--t-normal);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── 7. HERO ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #162340 60%, #0a1628 100%);
  color: var(--white);
  padding: 9rem 0 7rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .4;
  pointer-events: none;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(212, 175, 55, .3) 0%, transparent 70%);
  animation: shapeFloat 12s ease-in-out infinite alternate;
}

.shape-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(30, 80, 160, .3) 0%, transparent 70%);
  animation: shapeFloat 15s ease-in-out infinite alternate-reverse;
}

@keyframes shapeFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 60px) scale(1.1);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(212, 175, 55, .5);
  border-radius: 50%;
  animation: particleTwinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes particleTwinkle {

  0%,
  100% {
    opacity: .2;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(2);
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: var(--r-full);
  backdrop-filter: blur(6px);
  width: fit-content;
}

.pill-badge i {
  font-size: .75rem;
  animation: starSpin 4s linear infinite;
}

@keyframes starSpin {
  to {
    transform: rotate(360deg);
  }
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: .5rem;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  margin-right: -10px;
  object-fit: cover;
}

.hero-social-proof p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
}

.hero-social-proof strong {
  color: var(--gold);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.card-main {
  width: 100%;
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-avatar {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, .3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.card-header-row h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: .2rem;
}

.card-header-row p {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
}

.card-stats {
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, .04);
  border-radius: var(--r-md);
  padding: 1.25rem 1rem;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.cs-item {
  text-align: center;
}

.cs-value {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.cs-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

.card-progress-section {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--r-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: var(--r-full);
  transition: width 1.5s ease;
}

.card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  border-radius: var(--r-md);
  font-size: .85rem;
}

.card-float i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.card-float strong {
  color: var(--white);
  display: block;
  font-size: .9rem;
}

.card-float small {
  color: rgba(255, 255, 255, .5);
}

.card-float-1 {
  top: -30px;
  right: -20px;
}

.card-float-2 {
  bottom: -25px;
  left: -20px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ── 8. TRUST BAR ── */
.trust-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--gray-400);
  font-size: .9rem;
  font-weight: 600;
  transition: color var(--t-fast);
}

.trust-logo-item i {
  color: var(--gold);
}

.trust-logo-item:hover {
  color: var(--navy);
}

/* ── 9. STATS BAND ── */
.stats-band {
  padding: 5rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--gray-200);
}

.stat-icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: .75rem;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
}

.stat-item p {
  margin-top: .5rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy-600);
}

/* ── 10. SERVICES ── */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 3rem;
  background: var(--gray-100);
  padding: .5rem;
  border-radius: var(--r-full);
}

.tab-btn {
  padding: .65rem 1.4rem;
  border: none;
  border-radius: var(--r-full);
  background: transparent;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy-600);
  cursor: pointer;
  transition: var(--t-normal);
}

.tab-btn:hover {
  color: var(--navy);
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  animation: tabFadeIn .4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.tab-panel-content {
  padding: 3.5rem;
}

.service-number {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  display: block;
  margin-bottom: .5rem;
}

.tab-panel-content h3 {
  margin-bottom: 1rem;
}

.tab-panel-content p {
  margin-bottom: 1.5rem;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: var(--navy-700);
}

.feature-bullets i {
  color: var(--gold);
  margin-top: .2rem;
  flex-shrink: 0;
}

.tab-panel-image {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.tab-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.tab-panel-image:hover img {
  transform: scale(1.06);
}

/* ── 11. WHY US ── */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.why-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--t-normal);
}

.why-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, .3);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}

.why-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .3rem;
}

.why-card p {
  color: rgba(255, 255, 255, .55);
  font-size: .875rem;
}

.why-us-visual {
  position: relative;
}

.why-us-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
}

.why-badge-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-xl);
  animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

.why-badge-inner i {
  font-size: 2rem;
  color: var(--gold);
}

.why-badge-inner span {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.why-badge-inner p {
  font-size: .85rem;
  color: var(--navy-600);
}

/* ── 12. PROCESS ── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: var(--t-normal);
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.step-num {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  z-index: 0;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, .25);
}

.process-step h4 {
  margin-bottom: .75rem;
  font-size: 1.05rem;
}

.process-step p {
  font-size: .9rem;
}

.process-connector {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: var(--gray-200);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3rem;
}

/* ── 13. PRICING ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  position: relative;
  transition: var(--t-normal);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--navy-700);
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pc-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .8rem;
  padding: .35rem 1.1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.pc-icon {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
}

.pricing-card.featured .pc-icon {
  background: rgba(255, 255, 255, .1);
  color: var(--gold);
}

.pricing-card h3 {
  font-size: 1.4rem;
}

.pricing-card.featured h3 {
  color: var(--white);
}

.pc-subtitle {
  font-size: .875rem;
  color: var(--gray-600);
}

.pricing-card.featured .pc-subtitle {
  color: rgba(255, 255, 255, .55);
}

.pc-price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.pc-price span {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
}

.pricing-card.featured .pc-price {
  color: var(--white);
}

.pc-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-grow: 1;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: var(--navy-600);
}

.pc-features i {
  color: var(--gold);
  flex-shrink: 0;
}

.pc-features .disabled {
  opacity: .35;
}

.pricing-card.featured .pc-features li {
  color: rgba(255, 255, 255, .7);
}

/* ── 14. TESTIMONIALS ── */
.testimonials-carousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-card {
  display: none;
}

.testimonial-card.active {
  display: block;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  animation: tcSlideIn .4s ease;
}

@keyframes tcSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tc-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: .25rem;
}

.tc-quote {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--navy-700);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.tc-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-style: normal;
  font-family: var(--font-head);
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tc-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.tc-author strong {
  color: var(--navy);
  display: block;
}

.tc-author p {
  font-size: .875rem;
  color: var(--gray-600);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cc-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--t-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.cc-dots {
  display: flex;
  gap: .5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: var(--t-normal);
  cursor: pointer;
}

.dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: var(--r-full);
}

/* ── 15. BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--t-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.bc-image {
  position: relative;
  overflow: hidden;
}

.bc-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 6s ease;
}

.blog-card:hover .bc-image img {
  transform: scale(1.08);
}

.bc-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: var(--r-full);
}

.bc-body {
  padding: 1.75rem;
}

.bc-date {
  font-size: .8rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .75rem;
}

.blog-card h4 {
  margin-bottom: .75rem;
  font-size: 1.1rem;
}

.blog-card p {
  font-size: .9rem;
  margin-bottom: 1.25rem;
}

.bc-read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gold-dark);
}

.bc-read-more i {
  transition: transform var(--t-fast);
}

.bc-read-more:hover i {
  transform: translateX(4px);
}

/* ── 16. CONTACT ── */
.contact-section {
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-panel {
  padding-top: 1rem;
}

.contact-info-panel h2 {
  margin: .75rem 0 1rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}

.ci-item span {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-bottom: .2rem;
}

.ci-item a,
.ci-item p {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
}

.ci-item a:hover {
  color: var(--gold);
}

.social-row {
  display: flex;
  gap: .75rem;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  transition: var(--t-fast);
}

.social-row a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-panel {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.the-form h3 {
  margin-bottom: 2rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.form-field label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: .875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--navy);
  background: var(--gray-50);
  transition: var(--t-fast);
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, .08);
}

.form-field textarea {
  resize: vertical;
}

.form-success {
  display: none;
  align-items: center;
  gap: .75rem;
  background: #d1fae5;
  color: #065f46;
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-success.show {
  display: flex;
}

.form-success i {
  font-size: 1.25rem;
}

/* ── 17. FOOTER ── */
.site-footer {
  background: #070e1c;
  padding: 5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.footer-logo strong {
  color: var(--gold);
  font-weight: 800;
}

.footer-brand p {
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: .65rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
  transition: var(--t-fast);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-links-group h5 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-links-group a {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  transition: var(--t-fast);
}

.footer-links-group a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-newsletter h5 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: .75rem;
  font-weight: 700;
}

.footer-newsletter>p {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  margin-bottom: 1.25rem;
}

.nl-form {
  display: flex;
  margin-bottom: .75rem;
}

.nl-form input {
  flex-grow: 1;
  padding: .75rem 1rem;
  border: 1px solid rgba(255, 255, 255, .15);
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: .9rem;
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.nl-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.nl-form button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0 1.1rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--t-fast);
}

.nl-form button:hover {
  background: var(--gold-dark);
}

.nl-note {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, .3);
  font-size: .82rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, .3);
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, .7);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--t-normal);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── 18. SCROLL ANIMATIONS ── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-up {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ── 19. RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .tab-panel-grid {
    grid-template-columns: 1fr;
  }

  .tab-panel-image {
    min-height: 280px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-visual {
    display: none;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    padding-top: 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 2rem auto 0;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--navy-800);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right var(--t-slow);
    box-shadow: -10px 0 40px rgba(0, 0, 0, .4);
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .header-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 8rem 0 6rem;
  }

  .hero-lead {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item::after {
    display: none;
  }

  .services-tabs {
    justify-content: center;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-connector {
    display: none;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
  }

  .services-tabs {
    border-radius: var(--r-md);
  }

  .tab-btn {
    padding: .5rem 1rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}