@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --primary: #1a2040;
  --primary-light: #2d3566;
  --accent: #8cc63f;
  --accent-dark: #6fa32e;
  --accent-light: #b8e07a;
  --gold: #8cc63f;
  --dark: #0f1428;
  --dark-2: #161c36;
  --text: #2c3045;
  --text-light: #6b7280;
  --white: #ffffff;
  --off-white: #f8faf4;
  --border: #e5e9f0;
  --gradient: linear-gradient(135deg, #1a2040 0%, #2d3566 60%, #3d4880 100%);
  --gradient-accent: linear-gradient(135deg, #8cc63f 0%, #6fa32e 100%);
  --shadow: 0 4px 24px rgba(26,32,64,0.12);
  --shadow-lg: 0 12px 48px rgba(26,32,64,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p { color: var(--text-light); line-height: 1.75; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }

.tag {
  display: inline-block;
  background: rgba(140,198,63,0.12);
  color: var(--accent-dark);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}
.section-title { color: var(--dark); margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; max-width: 560px; margin: 0 auto 56px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--gradient-accent); color: var(--white); box-shadow: 0 4px 20px rgba(140,198,63,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(140,198,63,0.45); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark { border: 2px solid var(--primary); color: var(--primary); }
.btn-dark:hover { background: var(--primary); color: var(--white); }

/* Password Gate */
#password-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark); display: flex; align-items: center; justify-content: center; padding: 24px;
}
.gate-box {
  background: var(--dark-2); border: 1px solid rgba(140,198,63,0.2);
  border-radius: var(--radius-lg); padding: 48px; max-width: 420px; width: 100%; text-align: center;
}
.gate-logo {
  width: 64px; height: 64px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.gate-hex {
  width: 56px; height: 64px;
  background: var(--gradient-accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: white;
}
.gate-box h3 { color: var(--white); margin-bottom: 8px; }
.gate-box p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; }
.gate-input {
  width: 100%; padding: 14px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); color: var(--white);
  font-size: 1rem; font-family: 'Inter', sans-serif; margin-bottom: 12px; outline: none; transition: var(--transition);
}
.gate-input:focus { border-color: var(--accent); }
.gate-error { color: #ff6b6b; font-size: 0.85rem; margin-bottom: 12px; display: none; }
.gate-btn {
  width: 100%; padding: 14px;
  background: var(--gradient-accent); color: var(--white);
  border-radius: var(--radius); font-weight: 600; font-size: 1rem; font-family: 'Inter', sans-serif; cursor: pointer; transition: var(--transition);
}
.gate-btn:hover { opacity: 0.9; }
.gate-note { margin-top: 20px; font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15,20,40,0.96); backdrop-filter: blur(20px);
  padding: 14px 0; box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.navbar-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-hex {
  width: 40px; height: 46px;
  background: var(--gradient-accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem; color: white;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: white; }
.logo-sub { font-size: 0.62rem; font-weight: 500; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px; border-radius: 100px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.08); }
.nav-phone { color: var(--accent-light); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.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-menu {
  display: none; position: fixed; inset: 0; top: 72px;
  background: var(--dark); z-index: 999; padding: 32px 24px;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.8); font-size: 1.1rem; font-weight: 500; padding: 16px 20px; border-radius: var(--radius); transition: var(--transition); }
.mobile-menu a:hover { color: white; background: rgba(255,255,255,0.05); }
.mobile-menu .mobile-cta { margin-top: 16px; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 45%, rgba(44,53,102,0.7) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(140,198,63,0.08) 0%, transparent 50%), var(--dark);
}
.hex-pattern {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hex-float {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexFloat 10s ease-in-out infinite;
}
.hex-float:nth-child(1) { width: 280px; height: 320px; background: rgba(140,198,63,0.06); top: -60px; right: 5%; animation-delay: 0s; }
.hex-float:nth-child(2) { width: 160px; height: 184px; background: rgba(140,198,63,0.08); top: 30%; right: 15%; animation-delay: -3s; }
.hex-float:nth-child(3) { width: 100px; height: 115px; background: rgba(45,53,102,0.4); top: 60%; right: 8%; animation-delay: -6s; }
.hex-float:nth-child(4) { width: 200px; height: 230px; background: rgba(140,198,63,0.04); bottom: -40px; right: 30%; animation-delay: -2s; }
.hex-float:nth-child(5) { width: 80px; height: 92px; background: rgba(140,198,63,0.1); top: 20%; right: 35%; animation-delay: -8s; }

@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
  33% { transform: translateY(-18px) rotate(6deg); opacity: 0.85; }
  66% { transform: translateY(10px) rotate(-4deg); opacity: 0.95; }
}

.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; max-width: 660px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(140,198,63,0.12); border: 1px solid rgba(140,198,63,0.25);
  color: var(--accent); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 18px; border-radius: 100px; margin-bottom: 28px;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(0.7)} }
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title span { color: var(--accent); }
.hero-desc { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); }
.hero-stat-num .suffix { color: var(--accent); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Strip */
.features-strip { background: var(--gradient-accent); padding: 22px 0; }
.features-strip-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.feature-item { display: flex; align-items: center; gap: 10px; color: white; font-size: 0.9rem; font-weight: 600; }

/* Services Grid */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-accent); transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 60px; margin-bottom: 20px; transition: var(--transition);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(140,198,63,0.12); display: flex; align-items: center; justify-content: center;
}
.service-card:hover .service-icon { background: var(--gradient-accent); }
.service-icon svg { width: 22px; height: 22px; color: var(--accent-dark); transition: var(--transition); }
.service-card:hover .service-icon svg { color: white; }
.service-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-dark); font-weight: 600; font-size: 0.85rem; margin-top: 20px; transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-visual-main {
  border-radius: var(--radius-lg); height: 420px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hex-bg-grid {
  position: absolute; inset: 0; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70' viewBox='0 0 60 70'%3E%3Cpolygon points='30,5 55,20 55,50 30,65 5,50 5,20' fill='none' stroke='%238cc63f' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 70px;
}
.about-visual-inner { position: relative; z-index: 1; text-align: center; color: white; }
.about-visual-inner .big-hex {
  width: 120px; height: 138px; margin: 0 auto 16px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(140,198,63,0.2); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent);
}
.about-visual-inner .tagline { font-size: 1rem; font-weight: 600; opacity: 0.8; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--white); border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent-dark); line-height: 1; }
.badge-label { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }

.about-values { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.about-value { display: flex; align-items: flex-start; gap: 16px; }
.value-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(140,198,63,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.value-icon svg { width: 18px; height: 18px; color: var(--accent-dark); }
.value-text h4 { color: var(--dark); margin-bottom: 2px; font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.value-text p { font-size: 0.85rem; }

/* Stats */
.stats-banner { background: var(--primary); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; 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: rgba(255,255,255,0.1);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* Testimonials */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); }
.quote-icon { font-size: 4rem; color: var(--accent-light); font-family: Georgia,serif; line-height: 1; margin-bottom: 8px; }
.testimonial-text { color: var(--text); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-accent); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; }
.author-name { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.author-title { font-size: 0.78rem; color: var(--text-light); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-top: 4px; }

/* CTA */
.cta-section { background: var(--gradient); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70' viewBox='0 0 60 70'%3E%3Cpolygon points='30,5 55,20 55,50 30,65 5,50 5,20' fill='none' stroke='rgba(140,198,63,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 70px;
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 480px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-item { background: var(--off-white); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--transition); }
.contact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-item-icon { width: 52px; height: 52px; background: var(--gradient-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.contact-item-icon svg { width: 22px; height: 22px; color: white; }
.contact-item h4 { color: var(--dark); margin-bottom: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--primary); font-weight: 500; }

/* Footer */
.footer { background: var(--dark); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-top: 16px; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-col h5 { color: white; font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.4); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-social:hover { background: var(--accent-dark); color: white; }
.footer-social svg { width: 16px; height: 16px; }

/* Page Hero */
.page-hero { background: var(--dark); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(44,53,102,0.6) 0%, transparent 60%); }
.page-hero-hex {
  position: absolute; inset: 0; overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70' viewBox='0 0 60 70'%3E%3Cpolygon points='30,5 55,20 55,50 30,65 5,50 5,20' fill='none' stroke='rgba(140,198,63,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 70px;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.2); }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 560px; }

/* Contact Page */
.contact-main { background: var(--white); }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(140,198,63,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 20px; height: 20px; color: var(--accent-dark); }
.contact-info-content h4 { color: var(--dark); margin-bottom: 4px; font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.contact-info-content p, .contact-info-content a { font-size: 0.9rem; color: var(--text-light); }
.contact-info-content a:hover { color: var(--accent-dark); }
.contact-form-box { background: var(--off-white); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); }
.contact-form-box h3 { color: var(--dark); margin-bottom: 8px; font-size: 1.4rem; }
.contact-form-box > p { font-size: 0.9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text); outline: none; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-dark); box-shadow: 0 0 0 3px rgba(140,198,63,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* Services Detail */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-visual { background: var(--off-white); border-radius: var(--radius-lg); height: 300px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.service-detail-content .tag { display: block; }
.service-detail-content h2 { color: var(--dark); margin-bottom: 16px; font-size: 1.8rem; }
.service-list { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.service-list li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(140,198,63,0.12);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236fa32e' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo { height: 220px; background: var(--gradient); display: flex; align-items: center; justify-content: center; }
.team-photo-hex { width: 90px; height: 104px; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); background: rgba(140,198,63,0.25); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent); }
.team-info { padding: 24px; }
.team-info h3 { color: var(--dark); font-size: 1.1rem; margin-bottom: 4px; }
.team-role { color: var(--accent-dark); font-size: 0.85rem; font-weight: 600; }
.team-bio { font-size: 0.85rem; margin-top: 10px; }

/* Scroll animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
}
