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

:root {
  --primary: #0066ff;
  --primary-light: #4d94ff;
  --primary-dark: #0047b3;
  --accent: #ff5722;
  --accent-hover: #e64a19;
  --gradient: linear-gradient(135deg, #0066ff 0%, #00c6ff 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 50%, #0d1b2a 100%);
  --gradient-accent: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
  --dark: #0a0a23;
  --dark-card: #12122e;
  --text: #2d3748;
  --text-light: #718096;
  --light: #f7f8fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid rgba(0, 102, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}

.logo a {
  text-decoration: none;
}

.logo-text {
  font-size: 1.3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: block;
}

.nav-list {
  display: flex;
  gap: 8px;
}

.nav-list a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-list a:hover {
  background: var(--light);
  color: var(--primary);
}

.nav-list a.active {
  background: var(--primary);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
  border-radius: var(--radius);
}

.header-cta {
  background: var(--gradient-accent);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.25);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.35);
}

/* ===== HERO ===== */
.hero {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-content h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-content h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-content h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.8;
  margin-bottom: 35px;
  line-height: 1.8;
  max-width: 500px;
}

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

.hero-buttons .btn-secondary {
  background: var(--glass);
  border-color: var(--glass-border);
  color: var(--white);
}

.hero-buttons .btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-form h3 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-form select {
  color: rgba(255, 255, 255, 0.7);
}

.hero-form select option {
  background: var(--dark);
  color: var(--white);
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.15);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 2;
}

.trust-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  margin-top: -30px;
  box-shadow: var(--shadow-xl);
}

.trust-item {
  text-align: center;
  color: var(--white);
}

.trust-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-item span {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: 100px 0;
  background: var(--light);
}

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

.service-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.08);
}

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

.service-card h3 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card a {
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card a:hover {
  gap: 10px;
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.why-item {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

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

.why-item h3,
.why-item h4 {
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.why-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials .section-title {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.testimonial-card strong {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== SERVICE AREAS ===== */
.service-areas {
  padding: 100px 0;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.areas-grid span {
  background: var(--light);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}

.areas-grid span:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--light);
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.breadcrumb li:not(:last-child)::after {
  content: '>';
  color: var(--text-light);
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: var(--light);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  padding: 24px 28px;
  cursor: pointer;
  margin: 0;
}

.faq-answer {
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ===== CTA ===== */
.cta {
  background: var(--gradient);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-inner p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

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

.cta .btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}

.cta .btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.8;
  position: relative;
}

/* ===== SERVICES DETAIL ===== */
.services-detail {
  padding: 80px 0;
}

.service-block {
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-block p {
  color: var(--text-light);
  margin-bottom: 16px;
  max-width: 800px;
  line-height: 1.8;
}

.service-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.service-block li {
  color: var(--text-light);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.service-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--gradient);
  border-radius: 50%;
}

/* ===== SVG ICONS ===== */
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.service-block-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-block-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.why-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.why-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* ===== ABOUT ===== */
.about-content {
  padding: 80px 0;
}

.about-block {
  margin-bottom: 60px;
}

.about-block h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-block p {
  color: var(--text-light);
  margin-bottom: 16px;
  max-width: 800px;
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

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

.contact-form-wrap > p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--white);
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--light);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  color: var(--dark);
  margin-bottom: 24px;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item h4 {
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item a,
.contact-item p {
  color: var(--text-light);
  font-size: 1rem;
}

.contact-item a:hover {
  color: var(--primary);
}

.small-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* ===== MAP ===== */
.map-section {
  padding: 40px 0 100px;
}

.map-section h3 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
  font-weight: 700;
}

.map-placeholder {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  text-align: center;
  color: var(--text-light);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
}

/* ===== HIDDEN (honeypot) ===== */
.hidden {
  display: none;
}

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 20px 0;
}

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

.form-success p {
  color: var(--text-light);
  margin-bottom: 8px;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 24px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col ul li {
  padding: 6px 0;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col ul li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

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

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

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

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

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

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .nav-list.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 60px 0;
  }

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

  .section-title {
    font-size: 1.7rem;
  }

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

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

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

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

  .cta-inner h2 {
    font-size: 1.8rem;
  }

  .trust-inner {
    margin-top: -20px;
    border-radius: var(--radius);
    padding: 24px 16px;
  }

  .trust-item strong {
    font-size: 1.3rem;
  }

  .page-header h2 {
    font-size: 1.8rem;
  }

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

  .page-header h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.7rem;
  }

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

  .hero-form {
    padding: 24px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .trust-inner {
    gap: 16px;
  }

  .trust-item strong {
    font-size: 1.1rem;
  }

  .trust-item span {
    font-size: 0.75rem;
  }
}
