/* ============================================
   FEATHERS HR - Premium Corporate Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');
@import url('animations.css');


:root {
  --navy: #0a1628;
  --navy-light: #132238;
  --navy-muted: #1e3354;
  --green: #156839;
  --green-light: #1e8a4a;
  --green-dark: #0d4d28;
  --green-glow: rgba(21, 104, 57, 0.25);
  --teal: #156839;
  --teal-light: #1e8a4a;
  --teal-dark: #0d4d28;
  --gold: #c9a227;
  --gold-light: #dbb84a;
  --gold-dark: #a8861f;
  --gold-muted: rgba(201, 162, 39, 0.15);
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-50: #f4f6f9;
  --gray-100: #e8ecf2;
  --gray-200: #d1d9e6;
  --gray-400: #8b9cb3;
  --gray-600: #5a6b82;
  --gray-800: #2d3a4f;
  --text: #1a2332;
  --text-muted: #5a6b82;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.12);
  --shadow-card: 0 4px 24px rgba(10, 22, 40, 0.07);
  --shadow-3d: 0 10px 30px rgba(13, 77, 40, 0.12), 0 4px 12px rgba(10, 22, 40, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --shadow-3d-hover: 0 20px 50px rgba(13, 77, 40, 0.2), 0 8px 24px rgba(10, 22, 40, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
  --shadow-float: 0 25px 60px rgba(13, 77, 40, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 120px;
  --font-body: 'Plus Jakarta Sans', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(180deg, #fafbfc 0%, #f0f4f1 50%, #fafbfc 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

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

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

.container-narrow {
  max-width: 900px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 16px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f0f4f1 0%, #e8f0eb 50%, #f0f4f1 100%);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(21, 104, 57, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(201, 162, 39, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  background: linear-gradient(145deg, var(--green-light) 0%, var(--green) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

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

.btn-gold {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-gold:hover {
  background: linear-gradient(145deg, #e8c84a 0%, var(--gold-light) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.45);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-link {
  padding: 0;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-link:hover {
  color: var(--teal-light);
}

.btn-link svg {
  transition: transform var(--transition);
}

.btn-link:hover svg {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(21, 104, 57, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(13, 77, 40, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 112px;
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  display: block;
  height: 104px;
  width: 104px;
  max-width: 104px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 14px rgba(13, 77, 40, 0.22));
  transition: filter var(--transition);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 6px 20px rgba(13, 77, 40, 0.3));
}

.footer-logo {
  display: block;
  height: 100px;
  width: 100px;
  max-width: 100px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.logo-icon {
  display: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: 0.02em;
}

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

.nav-desktop > li {
  position: relative;
}

.nav-desktop > li > a,
.nav-desktop > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-desktop > li > a:hover,
.nav-desktop > li > a.active,
.nav-desktop > li > button:hover {
  color: var(--teal);
  background: rgba(13, 110, 110, 0.06);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.nav-desktop > li:hover .nav-dropdown,
.nav-desktop > li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-dropdown a:hover {
  background: var(--off-white);
  color: var(--teal);
}

.header-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 100px 32px 32px;
  overflow-y: auto;
  transition: right var(--transition);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul li {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav ul li a,
.mobile-nav ul li button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
}

.mobile-submenu {
  display: none;
  padding-left: 16px;
  padding-bottom: 8px;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu a {
  padding: 10px 0 !important;
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
}

.mobile-nav-cta {
  margin-top: 24px;
}

.mobile-nav-cta .btn {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 60px) 0 80px;
  background: linear-gradient(145deg, #0a1628 0%, #0d4d28 40%, #156839 70%, #0a1628 100%);
  overflow: hidden;
}

.hero-logo-frame {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-logo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(13, 77, 40, 0.2));
}

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

.hero-depth-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.depth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: floatOrb 12s ease-in-out infinite;
}

.depth-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.depth-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  bottom: -50px;
  left: -80px;
  animation-delay: -4s;
}

.depth-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -8s;
}

.depth-orb-4 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(21, 104, 57, 0.35) 0%, transparent 70%);
  top: 60%;
  right: 20%;
  animation-delay: -6s;
}

.depth-orb-5 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.25) 0%, transparent 70%);
  top: 15%;
  left: 45%;
  animation-delay: -10s;
}

@media (max-width: 768px) {
  .depth-orb-4,
  .depth-orb-5 {
    display: none;
  }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 540px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

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

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-xl);
  z-index: 2;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(145deg, var(--navy-muted), var(--teal-dark));
}

.hero-stats-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 10;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(21, 104, 57, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(21, 104, 57, 0.12);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stats-float .icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, rgba(21, 104, 57, 0.12) 0%, rgba(201, 162, 39, 0.18) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.hero-stats-float span {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--green);
  letter-spacing: 0.01em;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero .tagline {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
  color: var(--white);
}

/* Intro Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--gray-100), var(--gray-200));
}

.intro-image img,
.intro-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--gray-800);
}

.feature-list .check-icon {
  width: 28px;
  height: 28px;
  background: rgba(13, 110, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-3d);
  border: 1px solid rgba(21, 104, 57, 0.08);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-3d-hover);
  border-color: rgba(21, 104, 57, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 16px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, rgba(21, 104, 57, 0.12) 0%, rgba(201, 162, 39, 0.15) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(21, 104, 57, 0.15), inset 0 1px 0 rgba(255,255,255,0.8);
}

.service-card:hover .service-icon {
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px var(--green-glow);
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-disclaimer {
  text-align: center;
  margin-top: 40px;
  padding: 16px 24px;
  background: var(--gold-muted);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--gray-800);
  font-style: italic;
}

/* Why Choose Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3d);
  border: 1px solid rgba(21, 104, 57, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  transform-style: preserve-3d;
}

.why-card:hover {
  box-shadow: var(--shadow-3d-hover);
}

.why-card .icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(145deg, #ffffff 0%, #e8f0eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(21, 104, 57, 0.15), inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 4px rgba(21, 104, 57, 0.06);
}

.why-card:hover .icon-wrap {
  background: linear-gradient(145deg, var(--green-light) 0%, var(--green) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px var(--green-glow);
  transform: translateY(-4px) scale(1.05);
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.process-step:hover .process-step-number {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.08);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Document Cards */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.doc-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--transition);
}

.doc-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.doc-card .doc-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: rgba(13, 110, 110, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.doc-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-bottom: 3px solid var(--gold);
  transition: all var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-card svg {
  width: 40px;
  height: 40px;
  color: var(--teal);
  margin: 0 auto 16px;
}

.trust-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--teal-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  position: relative;
}

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

/* Service Page Sections */
.service-section {
  padding: 60px 0;
}

.service-section h2 {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
  position: relative;
}

.service-section h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--teal);
}

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

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.included-item:hover {
  background: rgba(13, 110, 110, 0.06);
}

.included-item svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.included-item span {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--gray-800);
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.925rem;
  color: var(--gray-800);
}

.checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.note-box {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--gold-muted);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.disclaimer-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.disclaimer-box h4 {
  color: var(--navy);
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.disclaimer-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.benefit-card {
  padding: 28px 22px;
  background: linear-gradient(160deg, #ffffff 0%, #f6faf7 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3d);
  border: 1px solid rgba(21, 104, 57, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-3d-hover);
  border-color: rgba(21, 104, 57, 0.18);
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-icon-3d {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  background: linear-gradient(145deg, var(--green-light) 0%, var(--green) 50%, var(--green-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 18px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-icon-3d svg {
  width: 26px;
  height: 26px;
}

.benefit-card:hover .benefit-icon-3d {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 28px var(--green-glow);
}

.benefit-icon-sm {
  width: 44px;
  height: 44px;
}

.benefit-icon-sm svg {
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-sm);
  border-color: var(--teal);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--teal);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--teal);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact-card:hover {
  background: rgba(13, 110, 110, 0.06);
}

.contact-card svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.1);
}

.form-group textarea,
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

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

.form-row .col {
  min-width: 0;
}

.btn-block {
  width: 100%;
}

/* Form success popup */
.form-success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-success-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.form-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(4px);
}

.form-success-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transform: translateY(16px) scale(0.96);
  transition: transform 0.3s ease;
}

.form-success-modal.is-visible .form-success-card {
  transform: translateY(0) scale(1);
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(21, 104, 57, 0.12), rgba(201, 162, 39, 0.15));
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}

.form-success-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.form-success-card p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.form-success-card .btn {
  min-width: 120px;
}

.map-placeholder {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.map-placeholder p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About Page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--teal);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

.mission-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 48px;
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
  margin: 48px 0;
}

.mission-box h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.mission-box p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto;
}

.approach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.approach-tag {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* FAQ Page Categories */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.faq-cat-btn {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  transition: all var(--transition);
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.faq-category-section {
  margin-bottom: 48px;
}

.faq-category-section h2 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.75;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-bottom a {
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer-bottom a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-legal {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-developer {
  padding-bottom: 24px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.55;
}

.footer-developer a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition), opacity var(--transition);
}

.footer-developer a:hover {
  color: var(--gold);
  opacity: 1;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  color: var(--white);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background: #25d366;
}

.float-call {
  background: var(--teal);
  display: none;
}

.float-top {
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Legal Pages */
.legal-content {
  padding: calc(var(--header-height) + 40px) 0 80px;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content .last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 32px 0 16px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Two-column docs sections */
.docs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.docs-two-col h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--teal);
}

/* Insurance specific */
.insurance-hero-visual {
  max-width: 200px;
  margin: 32px auto 0;
  opacity: 0.9;
}

.why-insurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-insurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  font-weight: 500;
}

.why-insurance-item svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-timeline::before {
    display: none;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

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

  .hamburger {
    display: flex;
  }

  .logo-text {
    font-size: 0.62rem;
  }

  .services-grid,
  .why-grid,
  .docs-grid,
  .values-grid,
  .benefits-grid,
  .included-grid,
  .trust-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

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

  .checklist {
    grid-template-columns: 1fr;
  }

  .docs-two-col {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-step {
    display: flex;
    gap: 20px;
    text-align: left;
    align-items: flex-start;
  }

  .process-step-number {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
    margin: 0;
    flex-shrink: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .float-call {
    display: flex;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .why-insurance-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-float {
    left: 10px;
    bottom: -10px;
    padding: 14px 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* ===== 7D DEPTH ENHANCEMENTS ===== */

.intro-image.intro-logo-showcase {
  aspect-ratio: 1 / 1;
  overflow: visible;
  height: auto;
  min-height: 0;
}

.intro-image.intro-logo-showcase img,
.intro-logo-showcase .intro-logo-3d {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.intro-logo-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0f4f1 0%, #e8f0eb 100%);
  border: 1px solid rgba(21, 104, 57, 0.1);
  box-shadow: var(--shadow-3d);
  padding: 28px;
  aspect-ratio: 1 / 1;
}

.intro-logo-3d {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(13, 77, 40, 0.25));
  transition: transform 0.5s ease, filter 0.5s ease;
  animation: logoFloat 6s ease-in-out infinite;
}

.intro-logo-showcase:hover .intro-logo-3d {
  transform: scale(1.03) translateY(-4px);
  filter: drop-shadow(0 20px 48px rgba(13, 77, 40, 0.35));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.trust-card {
  background: linear-gradient(160deg, #ffffff 0%, #f6faf7 100%);
  box-shadow: var(--shadow-3d);
  border: 1px solid rgba(21, 104, 57, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.trust-card:hover {
  box-shadow: var(--shadow-3d-hover);
}

.trust-card svg {
  filter: drop-shadow(0 4px 8px var(--green-glow));
}

.doc-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8faf9 100%);
  box-shadow: var(--shadow-3d);
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.doc-card:hover {
  box-shadow: var(--shadow-3d-hover);
  border-color: var(--green);
}

.doc-card .doc-icon {
  background: linear-gradient(145deg, rgba(21, 104, 57, 0.1) 0%, rgba(201, 162, 39, 0.12) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 4px 12px rgba(21, 104, 57, 0.1);
}

.value-card {
  background: linear-gradient(160deg, #ffffff 0%, #f6faf7 100%);
  box-shadow: var(--shadow-3d);
  border-top: 3px solid var(--green);
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  box-shadow: var(--shadow-3d-hover);
}

.included-item {
  background: linear-gradient(145deg, #ffffff 0%, #f4f8f5 100%);
  box-shadow: 0 2px 8px rgba(21, 104, 57, 0.06);
  border: 1px solid rgba(21, 104, 57, 0.06);
}

.included-item svg {
  background: linear-gradient(145deg, var(--green-light), var(--green));
  color: white !important;
  padding: 4px;
  border-radius: 50%;
  width: 24px !important;
  height: 24px !important;
  box-shadow: 0 3px 10px var(--green-glow);
}

.process-step-number {
  background: linear-gradient(145deg, #ffffff 0%, #e8f0eb 100%);
  border-color: var(--green);
  box-shadow: var(--shadow-3d), inset 0 2px 0 rgba(255,255,255,0.9);
}

.process-step:hover .process-step-number {
  background: linear-gradient(145deg, var(--green-light) 0%, var(--green) 100%);
  box-shadow: 0 8px 24px var(--green-glow);
}

.page-hero {
  background: linear-gradient(145deg, #0a1628 0%, #0d4d28 50%, #156839 100%);
}

.cta-banner {
  background: linear-gradient(145deg, #0a1628 0%, #0d4d28 40%, #156839 80%, #0a1628 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.contact-form {
  box-shadow: var(--shadow-3d);
  background: linear-gradient(160deg, #ffffff 0%, #f8faf9 100%);
}

.float-btn {
  box-shadow: 0 8px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}

.float-btn:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.card-3d {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (max-width: 768px) {
  .intro-logo-3d {
    animation: none;
  }

  .hero-logo-frame {
    padding: 20px;
  }

  .hero-logo-img {
    max-width: 300px;
  }
}

/* ===== MODERN PREVIEW CARDS & ALIGNMENT ===== */

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  width: 100%;
  text-align: center;
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--green-glow);
}

.preview-card-grid {
  align-items: stretch;
}

.preview-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.preview-card-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.preview-card-desc {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.preview-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.preview-card.is-hovered,
.preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
}

.preview-card-compact {
  padding: 18px 20px;
  min-height: auto;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  animation: staggerFadeUp 0.6s ease both;
}

@keyframes staggerFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-inner {
  align-items: center;
}

.section {
  position: relative;
}

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

.intro-grid,
.contact-grid,
.hero-grid {
  align-items: center;
}

.why-grid,
.docs-grid {
  align-items: stretch;
}

.why-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card p {
  flex: 1;
}

.doc-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.included-grid.preview-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.included-item.preview-card {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  padding: 20px;
}

.service-card.preview-card {
  padding: 0;
  overflow: hidden;
}

.service-card.preview-card .preview-card-inner {
  padding: 32px 28px 0;
}

.service-card.preview-card .preview-card-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--gray-100);
}

.process-timeline {
  align-items: flex-start;
}

.feature-list li {
  align-items: center;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-grid.preview-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-img {
    height: 88px;
    width: 88px;
    max-width: 88px;
  }

  .logo {
    max-width: 96px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 12px;
  }

  .logo-img {
    height: 72px;
    width: 72px;
    max-width: 72px;
  }

  .logo {
    max-width: 80px;
  }

  .benefits-grid,
  .services-grid,
  .why-grid,
  .docs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .included-grid.preview-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-buttons {
    width: 100%;
    justify-content: center;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 56px 0;
  }

  .preview-card.is-hovered,
  .preview-card:hover {
    transform: translateY(-4px);
  }

  .hero-stats-float {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 60px;
    width: 60px;
    max-width: 60px;
  }

  .logo {
    max-width: 68px;
  }

  .hero-logo-img {
    max-width: 260px;
  }

  .preview-card-footer .btn {
    font-size: 0.85rem;
    padding: 10px 16px;
  }
}
