/* ============================================
   AgentCJ — Dark Futuristic Theme
   ============================================ */

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

:root {
  --color-bg-deep: #05080f;
  --color-bg: #0a0f1a;
  --color-bg-card: #0f1629;
  --color-bg-card-hover: #141c35;
  --color-bg-elevated: #111827;
  --color-surface: rgba(15, 22, 41, 0.7);
  --color-accent: #00d4ff;
  --color-accent-dim: #0091b3;
  --color-accent-glow: rgba(0, 212, 255, 0.15);
  --color-accent-glow-strong: rgba(0, 212, 255, 0.3);
  --color-accent-secondary: #7c3aed;
  --color-accent-secondary-glow: rgba(124, 58, 237, 0.15);
  --color-text: #e2e8f0;
  --color-text-secondary: #7a8ba8;
  --color-text-muted: #4a5568;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-accent: rgba(0, 212, 255, 0.2);
  --color-border-hover: rgba(0, 212, 255, 0.4);
  --color-success: #10b981;
  --color-warning: #ef4444;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.1);
  --shadow-glow-strong: 0 0 40px rgba(0, 212, 255, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.5);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --transition: 0.25s ease;
}

/* --- Fonts --- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-v18-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-v18-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-v18-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-v18-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter-v18-latin-800.woff2") format("woff2");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.938rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  padding: 10px 20px;
  white-space: nowrap;
  position: relative;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg-deep);
  font-weight: 700;
}
.btn-primary:hover {
  background: #33dfff;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border-accent);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-glow);
  color: var(--color-accent);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}

.btn-white {
  background: var(--color-accent);
  color: var(--color-bg-deep);
  font-weight: 700;
}
.btn-white:hover {
  background: #33dfff;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.btn-outline-white:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}

.btn-block {
  width: 100%;
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 8, 15, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(5, 8, 15, 0.92);
  box-shadow: 0 1px 0 var(--color-border-accent), var(--shadow-glow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.03em;
}

.nav-logo span {
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.footer-dhs {
  display: block;
  color: var(--color-text);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-trec-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.footer-trec-links a {
  font-size: 0.813rem;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

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

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  transition: width var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.nav-phone:hover {
  color: var(--color-accent);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--color-accent);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--color-accent);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 8, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
}

.mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-link:hover {
  color: var(--color-accent);
}

.mobile-menu hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 12px 0;
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--color-bg-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(0, 212, 255, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(124, 58, 237, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.03) 0%, transparent 40%);
}

/* Animated grid lines */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

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

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-accent-glow);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-border-accent);
}

.hero-content h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 24px 0 20px;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.063rem;
  color: var(--color-text-secondary);
  max-width: 460px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 auto;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-accent);
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.1));
}

.carousel-dots {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-muted);
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
  width: 24px;
  border-radius: 4px;
}

/* --- Section shared --- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-accent-glow);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-border-accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Services Selector --- */
.services {
  padding: 100px 0;
  background: var(--color-bg);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-accent), transparent);
}

.service-selector {
  max-width: 720px;
  margin: 0 auto;
}

.service-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-btn svg {
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.service-btn:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg-card-hover);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.service-btn:hover svg {
  color: var(--color-accent);
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.service-btn.active {
  border-color: var(--color-accent);
  background: var(--color-accent-glow);
  color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), var(--shadow-glow-strong);
}

.service-btn.active svg {
  color: var(--color-accent);
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

/* Sub-options */
.service-sub {
  margin-top: 24px;
  padding: 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.service-sub.visible {
  opacity: 1;
  max-height: 500px;
  margin-top: 24px;
  border-color: var(--color-border-accent);
}

.service-sub-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-sub-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-sub-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 124px;
  height: 124px;
  padding: 16px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
}

.service-sub-btn svg {
  color: var(--color-text-muted);
  transition: all 0.25s ease;
}

.service-sub-btn:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-glow);
  color: var(--color-accent);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}

.service-sub-btn:hover svg {
  color: var(--color-accent);
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.service-sub-btn.active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-bg-deep);
}

.service-sub-btn.active svg {
  color: var(--color-bg-deep);
}

/* --- Why Us --- */
.why {
  padding: 100px 0;
  background: var(--color-bg-deep);
  position: relative;
}

.why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-accent), transparent);
}

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

.why-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all 0.35s ease;
  background: var(--color-bg-card);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-card:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

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

.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-glow);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--color-border-accent);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, 0.04) 0%, transparent 50%);
}

.cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-accent), transparent);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.cta-inner p {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* --- FAQ --- */
.faq {
  padding: 100px 0;
  background: var(--color-bg-deep);
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-accent), transparent);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-trigger:hover {
  color: var(--color-accent);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--color-text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.5));
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel p {
  padding-bottom: 20px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 64px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-accent), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.footer-logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 12px;
}

.footer-logo-text span {
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.footer-address {
  font-size: 0.813rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

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

.footer-col h4 {
  font-size: 0.688rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ============================================
   Responsive
   ============================================ */

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

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

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

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

  .hero-carousel {
    max-width: 400px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .services {
    padding: 64px 0;
  }

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

  .service-sub {
    padding: 24px;
  }

  .why {
    padding: 64px 0;
  }

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

  .faq {
    padding: 64px 0;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

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

  .footer {
    padding: 40px 0 0;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

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

  .service-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .service-btn {
    padding: 20px 12px;
    font-size: 0.75rem;
  }

  .service-sub-btn {
    width: 100px;
    height: 100px;
    font-size: 0.688rem;
  }

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

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }
}
