/* ==============================
   RESET & BASE
   ============================== */

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

:root {
  --color-primary: #05060a;
  --color-bg-dark: #0b0d13;
  --color-text: #f5f5f5;
  --color-text-muted: #c2c7d6;
  --color-accent: #f59e0b; /* Kuldne/oranž aktsent */
  --color-accent-hover: #fbbf24;
  --color-accent-glow: rgba(245, 158, 11, 0.4);
  --color-border: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "SF Pro Display", system-ui, sans-serif;
  background: var(--color-primary);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==============================
   HEADER & NAVIGATION
   ============================== */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.header nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 0.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 1rem 2rem;
}

.logo {
  grid-column: 1;
  grid-row: 1;
}

.header-contact {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: flex-end;
}

.header nav > ul {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-link {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact-link:hover {
  color: var(--color-accent-hover);
  transform: translateY(-1px);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.logo-image {
  height: 50px;
  width: auto;
  /* Logo on originaalsetes värvides - must S */
  transition: all 0.3s ease;
  display: block;
}

.logo:hover .logo-image {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown > a {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: rgba(11, 13, 19, 0.98);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 0;
  min-width: 220px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(20px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.25s ease;
  border-radius: 0;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-accent);
  padding-left: 2rem;
}

.dropdown-menu li a::before {
  display: none;
}

.header nav ul li a {
  font-size: 0.9rem;
  color: #9ca3af;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
}

.header nav ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--color-accent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header nav ul li a:hover {
  color: var(--color-text);
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

.header nav ul li a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.header nav ul li a.active {
  color: var(--color-accent);
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  font-weight: 600;
}

.header nav ul li a.active::before {
  transform: translateX(-50%) scaleX(1);
}

@media (max-width: 880px) {
  .header nav {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .header-contact {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
  }

  .header nav > ul {
    grid-column: 1;
    grid-row: 3;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==============================
   LAYOUT & CONTAINERS
   ============================== */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  min-height: 60vh;
}

.content h1 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
}

/* ==============================
   HERO SECTION
   ============================== */

.hero {
  background: 
    radial-gradient(ellipse at top left, rgba(245, 158, 11, 0.08), transparent 40%),
    radial-gradient(ellipse at bottom right, rgba(99, 102, 241, 0.06), transparent 40%),
    radial-gradient(circle at top, #1a2440, #05060a 55%);
  padding: 5rem 0 6rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

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

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-left: 2.5rem;
}

.hero-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: var(--color-accent);
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-logo {
  width: 100%;
  height: auto;
  max-width: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 40px rgba(245, 158, 11, 0.2));
  animation: floatLogo 6s ease-in-out infinite;
}

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

@media (max-width: 880px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-placeholder {
    height: 300px;
  }
}

/* ==============================
   BUTTONS
   ============================== */

.btn,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
}

.btn.primary,
.cta-btn {
  background: linear-gradient(135deg, var(--color-accent) 0%, #fb923c 100%);
  color: #000;
  border-color: var(--color-accent);
  box-shadow: 
    0 4px 14px rgba(245, 158, 11, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.btn.primary::before,
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn.primary:hover,
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 24px rgba(245, 158, 11, 0.4),
    0 4px 12px rgba(245, 158, 11, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn.primary:hover::before,
.cta-btn:hover::before {
  opacity: 1;
}

.btn.primary:active,
.cta-btn:active {
  transform: translateY(-1px);
}

.btn.secondary {
  background: #2b2b2b;
  border: 1px solid #444;
  color: #fff;
}

.btn.secondary:hover {
  background: #444;
}

.btn.ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(229, 231, 235, 0.4);
}

.btn.ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(229, 231, 235, 0.3);
}

.btn.ghost:hover {
  background: rgba(229, 231, 235, 0.05);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08), transparent 60%);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Competence Section */
.competence-section {
  padding: 4rem 0;
  background: rgba(245, 158, 11, 0.02);
  border-bottom: 1px solid var(--color-border);
}

.competence-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.comp-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
}

.comp-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.comp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
  font-weight: 700;
}

.comp-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comp-card li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.comp-card li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ==============================
   CONTACT SECTION & FORM
   ============================== */

.contact-section {
  max-width: 600px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
  color: #e5e7eb;
  font-weight: 500;
}

.contact-form label:first-of-type {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.6);
  color: #e5e7eb;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(2, 6, 23, 0.8);
  box-shadow: 
    0 0 0 3px rgba(245, 158, 11, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-form button {
  margin-top: 0.5rem;
  width: 100%;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.5;
}

/* Error message styling */
.form-error {
  margin-bottom: 1.5rem;
  padding: 0.875rem 1rem;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 0.5rem;
  color: #fca5a5;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: slideDown 0.3s ease-out;
}

.form-error strong {
  font-weight: 600;
  color: #fecaca;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   SERVICES
   ============================== */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 800px;
}

.services-list details {
  background: #0b0d13;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.9rem;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease;
}

.services-list details:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.services-list details[open] {
  border-color: var(--color-accent);
}

.services-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: #f5f5f5;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-list summary::-webkit-details-marker {
  display: none;
}

.services-list summary::after {
  content: "▾";
  font-size: 0.85rem;
  color: #9ca3af;
  transition: transform 0.2s ease;
}

.services-list details[open] summary::after {
  transform: rotate(180deg);
}

.services-list details p {
  margin-top: 0.75rem;
  color: #c2c7d6;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==============================
   SERVICES ACCORDION SECTION
   ============================== */

.services-accordion-section {
  background: var(--color-bg-dark);
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.services-accordion-section h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.services-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-accordion-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-accordion-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.service-accordion-item[open] {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-accordion-item summary {
  padding: 1.5rem 2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
  user-select: none;
}

.service-accordion-item summary::-webkit-details-marker {
  display: none;
}

.service-accordion-item summary::after {
  content: "▾";
  font-size: 1.2rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.service-accordion-item[open] summary::after {
  transform: rotate(180deg);
}

.service-accordion-item summary:hover {
  background: rgba(245, 158, 11, 0.05);
}

.service-accordion-item[open] summary {
  background: rgba(245, 158, 11, 0.08);
  border-bottom: 1px solid var(--color-border);
}

.service-title {
  font-size: 1.15rem;
  color: var(--color-text);
}

.service-accordion-item[open] .service-title {
  color: var(--color-accent);
}

.service-price {
  font-size: 0.95rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-left: 1rem;
}

.service-content {
  padding: 1.5rem 2rem 2rem;
}

.service-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-link {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link::after {
  content: "→";
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover {
  color: var(--color-accent-hover);
  gap: 0.75rem;
}

.service-link:hover::after {
  transform: translateX(4px);
}

/* ==============================
   PROCESS SECTION
   ============================== */

.process-section {
  padding: 4rem 0;
  background: rgba(245, 158, 11, 0.02);
  border-bottom: 1px solid var(--color-border);
}

.process-section h2 {
  font-size: 2.25rem;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-accent), #fb923c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.process-step p {
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ==============================
   FAQ SECTION
   ============================== */

.faq-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-section h2 {
  font-size: 2.25rem;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.faq-item[open] {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  background: rgba(245, 158, 11, 0.05);
  color: var(--color-accent);
}

.faq-item[open] summary {
  background: rgba(245, 158, 11, 0.08);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-accent);
}

.faq-item p {
  padding: 1.5rem 1.75rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ==============================
   WHY ME SECTION
   ============================== */

.why-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.why-section h2 {
  font-size: 2.25rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.why-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 880px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 1.25rem;
  border: 1px solid var(--color-border);
  padding: 2.25rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #fb923c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(245, 158, 11, 0.1);
}

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

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-weight: 600;
}

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

/* ==============================
   FOOTER
   ============================== */

footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: 
    linear-gradient(180deg, rgba(2, 6, 23, 0.8), rgba(5, 6, 10, 0.95)),
    radial-gradient(ellipse at bottom, rgba(245, 158, 11, 0.05), transparent 60%);
  margin-top: 5rem;
  text-align: center;
  position: relative;
}

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

footer p {
  font-size: 0.9rem;
  color: #9ca3af;
  letter-spacing: 0.02em;
}

/* ==============================
   PORTFOLIO SECTION
   ============================== */

.portfolio-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.portfolio-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.portfolio-section .section-intro {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: var(--color-bg-dark);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.portfolio-image {
  width: 100%;
  height: 200px;
  background: #1a1d2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.portfolio-card h4 {
  padding: 1rem 1.25rem 0.5rem;
  font-size: 1.1rem;
  color: var(--color-text);
}

.portfolio-card p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.portfolio-card.placeholder {
  opacity: 0.6;
}

/* ==============================
   PARTNERS SECTION
   ============================== */

.partners-section {
  padding: 3rem 0;
  background: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-border);
}

.partners-section h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  width: 100%;
  max-width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  color: #6b7280;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.partner-logo:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-accent);
}

.partner-logo.placeholder {
  opacity: 0.5;
}

/* ==============================
   PAGE HEROES
   ============================== */

.services-page-hero,
.why-page-hero,
.page-hero,
.service-detail-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: 
    radial-gradient(ellipse at top, rgba(245, 158, 11, 0.06), transparent 50%);
  border-bottom: 1px solid var(--color-border);
}

.services-page-hero h1,
.why-page-hero h1,
.page-hero h1,
.service-detail-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-badge {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 1rem 0;
}

/* Service Detail Content */
.service-detail-content {
  padding: 4rem 0;
}

.detail-block {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.detail-block h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.detail-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.feature-list-large {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list-large li {
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.feature-list-large li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  padding-left: 2rem;
  position: relative;
  color: var(--color-text-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.cross-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cross-list li {
  padding-left: 2rem;
  position: relative;
  color: var(--color-text-muted);
}

.cross-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.steps-detailed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-detailed {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* Desktop: normal layout */
.step-detailed summary {
  list-style: none;
  cursor: default;
}

.step-detailed summary::-webkit-details-marker {
  display: none;
}

.step-detailed[open] summary {
  cursor: default;
}

.step-summary {
  display: flex;
  gap: 2rem;
  align-items: center;
  cursor: default;
}

.step-summary::after {
  display: none;
}

.step-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  min-width: 80px;
  opacity: 0.3;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  display: block;
}

.step-detailed h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.step-detailed p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  padding-left: 0;
  display: block;
}

/* Desktop: always show content (force open) */
@media (min-width: 769px) {
  .step-detailed {
    display: flex !important;
    gap: 2rem;
    align-items: flex-start;
    border: none !important;
    background: transparent !important;
    padding: 0;
    margin-bottom: 2rem;
  }

  .step-detailed summary {
    pointer-events: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 0;
  }

  .step-detailed[open] summary,
  .step-detailed summary {
    margin-bottom: 0;
  }

  .step-detailed p {
    display: block !important;
    margin-top: 0.75rem;
    flex: 1;
    padding: 0;
  }

  .step-summary {
    flex: 0 0 auto;
  }

  .step-summary::after {
    display: none !important;
  }

  .step-detailed[open],
  .step-detailed {
    background: transparent !important;
    border: none !important;
  }

  /* Force open on desktop */
  .step-detailed {
    overflow: visible;
  }

  .step-detailed > p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }
}

.cta-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #000;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.pricing-desc {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.pricing-note {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-note h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.pricing-note ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricing-note li {
  padding: 0.5rem 0;
  color: var(--color-text-muted);
}

/* Contact Page */
.contact-page-section {
  padding: 4rem 0;
}

.contact-grid-page {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-box h2,
.contact-form-box h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 2rem;
}

.contact-detail h3 {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.contact-big-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.contact-big-link:hover {
  color: var(--color-accent-hover);
  transform: translateX(4px);
}

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

@media (max-width: 880px) {
  .contact-grid-page {
    grid-template-columns: 1fr;
  }
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-detailed-card {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 1.25rem;
  align-content: start;
}

.service-detailed-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(245, 158, 11, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.service-detailed-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.service-detailed-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.service-detailed-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detailed-card li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.service-detailed-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.service-detailed-card .btn {
  margin-top: 1rem;
  width: 100%;
}

.service-detailed-card.featured-card {
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.2);
  position: relative;
}

/* Why CTA */
.why-cta {
  padding: 4rem 0;
}

/* ==============================
   MOBILE RESPONSIVE
   ============================== */

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #f59e0b;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .header nav {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    padding: 1rem;
    gap: 1rem;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .mobile-menu-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .header-contact {
    grid-column: 2;
    grid-row: 1;
    display: flex !important;
    gap: 1rem;
    justify-content: flex-end;
    font-size: 0.85rem;
  }

  .header nav > ul {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #1a1a1a;
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    margin: 10px 0;
  }

  .nav-menu a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
  }

  .nav-menu a:hover {
    background: #2a2a2a;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    box-shadow: none;
    background: #2a2a2a;
    margin-top: 10px;
    border-radius: 8px;
    padding: 0.5rem 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 0.75rem 1.5rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    padding: 2rem 0 3rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero .container {
    padding: 0 1.25rem;
  }

  .hero-content {
    padding: 0 0.5rem;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero h1 {
    font-size: 1.75rem !important;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .hero-text h1 {
    text-align: center;
  }

  .hero-text p {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }

  .stat {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    padding: 1.5rem;
  }

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

  .competence-grid {
    grid-template-columns: 1fr !important;
  }

  .comp-card {
    padding: 1.5rem;
  }

  .comp-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .comp-card ul {
    gap: 0.5rem;
  }

  .comp-card li {
    font-size: 0.85rem;
    padding-left: 1.25rem;
  }

  .services-detailed-grid {
    grid-template-columns: 1fr !important;
  }

  .service-detailed-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }

  .service-detailed-card h3 {
    font-size: 1.25rem;
  }

  .service-price {
    font-size: 1.1rem;
  }

  .service-detailed-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .service-detailed-card li {
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
  }

  .service-detailed-card ul {
    margin: 0.5rem 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-card {
    padding: 1.5rem;
  }

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

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

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

  .contact-form {
    padding: 1.5rem;
  }

  .steps-detailed {
    grid-template-columns: 1fr !important;
  }

  .step-detailed {
    padding: 0;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
  }

  .step-detailed[open] {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-accent);
  }

  .step-summary {
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    cursor: pointer !important;
    user-select: none;
    width: 100%;
    box-sizing: border-box;
  }

  .step-summary::after {
    content: "▼" !important;
    display: block !important;
    color: var(--color-accent);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
    flex-shrink: 0;
  }

  .step-detailed[open] .step-summary::after {
    transform: rotate(180deg);
  }

  .step-num {
    font-size: 1.25rem;
    min-width: 32px;
    opacity: 1;
    flex-shrink: 0;
  }

  .step-title {
    font-size: 1rem;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
  }

  .step-detailed p {
    padding: 0 1.25rem 1rem;
    margin-top: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
  }

  .detail-block {
    padding: 1.5rem 0;
  }

  .detail-block h2 {
    font-size: 1.5rem;
  }

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

  .service-detail-hero {
    padding: 2rem 0;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .section-intro {
    font-size: 1rem;
    padding: 0 0.25rem;
  }

  .hero-text h1,
  .hero-text p {
    padding-left: 0;
    margin-left: 0;
  }

  .detail-block {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .service-detail-hero .container {
    padding: 0 1.25rem;
  }

  .service-detail-content .container {
    padding: 0 1.25rem;
  }

  .header nav > ul {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .header nav > ul li {
    font-size: 0.85rem;
  }

  .header nav > ul li a {
    padding: 0.5rem 0.75rem;
  }

  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0.5rem 0 0 1rem;
    margin-top: 0.25rem;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .feature-list-large,
  .check-list,
  .cross-list {
    padding-left: 1rem;
  }

  .cta-box {
    padding: 1.5rem;
  }

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

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

  .hero .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 0 0.25rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    align-items: center;
  }

  .hero h1 {
    font-size: 1.5rem !important;
    padding-left: 0;
    text-align: center;
  }

  .hero-text p {
    font-size: 0.9rem;
    padding-left: 0;
    text-align: center;
  }

  .hero-stats {
    align-items: center;
    justify-content: center;
  }

  .btn,
  .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.85rem;
  }

  .header-contact {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .contact-link {
    font-size: 0.8rem;
  }

  .logo-image {
    max-height: 32px;
  }

  .service-detail-hero h1 {
    font-size: 1.75rem;
  }

  .service-detail-hero .container {
    padding: 0 1rem;
  }

  .service-detail-content .container {
    padding: 0 1rem;
  }

  .hero-price {
    font-size: 1.5rem;
  }

  .service-price {
    font-size: 1.1rem;
  }

  .price-tag {
    font-size: 1.5rem;
  }

  .detail-block {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .step-summary {
    padding: 0.875rem 1rem;
    gap: 0.5rem;
  }

  .step-num {
    font-size: 1.1rem;
    min-width: 28px;
  }

  .step-title {
    font-size: 0.95rem;
  }

  .step-detailed p {
    padding: 0 1rem 0.875rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 375px) {
  .step-summary {
    padding: 0.75rem 0.875rem;
    gap: 0.5rem;
  }

  .step-num {
    font-size: 1rem;
    min-width: 24px;
  }

  .step-title {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .step-detailed p {
    padding: 0 0.875rem 0.75rem;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .container {
    padding: 0 0.875rem;
  }

  .service-detail-content .container {
    padding: 0 0.875rem;
  }
}

/* ==============================
   MOBILE NAVIGATION
   ============================== */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #f59e0b;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #f59e0b;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
}

body.menu-open {
    overflow: hidden;
}

/* ==============================
   UTILITIES
   ============================== */

.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 640px;
  color: var(--color-text-muted);
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* Content Section Styles */
.content-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.content-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.content-section ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.content-section li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.content-section li:before {
  content: "▸";
  position: absolute;

/* ==============================
   BLOG SECTION & STYLING
   ============================== */

.blog-section {
  padding: 4rem 0;
  background: rgba(245, 158, 11, 0.02);
  border-bottom: 1px solid var(--color-border);
}

.blog-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.blog-section > .container > p {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(245, 158, 11, 0.1);
}

.blog-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.blog-card h3 a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h3 a:hover {
  color: var(--color-accent);
}

.blog-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
  flex-grow: 1;
}

.blog-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Blog Post Page */
.blog-post {
  display: flex;
  flex-direction: column;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: 
    radial-gradient(ellipse at top, rgba(245, 158, 11, 0.08), transparent 50%);
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-meta {
  display: flex;
  gap: 2rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.publish-date::before {
  content: "📅";
  font-size: 1rem;
}

.reading-time::before {
  content: "⏱️";
  font-size: 1rem;
}

.blog-content {
  padding: 4rem 0;
  flex-grow: 1;
}

.blog-content h2 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--color-text);
  font-weight: 700;
}

.blog-content h2:first-child {
  margin-top: 0;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-weight: 600;
}

.blog-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.blog-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.blog-content li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.blog-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.blog-content ol {
  list-style: decimal;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.blog-content ol li {
  padding: 0.5rem 0;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.blog-content strong {
  color: var(--color-text);
  font-weight: 600;
}

.blog-content em {
  color: var(--color-accent);
  font-style: italic;
}

.blog-content a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-content a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

@media (max-width: 880px) {
  .page-hero h1 {
    font-size: 1.8rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-content {
    padding: 2.5rem 0;
  }

  .blog-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .blog-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
  }

  .blog-content p {
    font-size: 1rem;
  }

  .blog-content li {
    font-size: 1rem;
  }

  .blog-content ol li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .blog-meta {
    font-size: 0.85rem;
  }

  .blog-content {
    padding: 1.5rem 0;
  }

  .blog-content h2 {
    font-size: 1.25rem;
  }

  .blog-content h3 {
    font-size: 1.05rem;
  }

  .blog-content p {
    font-size: 0.95rem;
  }

  .blog-content li {
    font-size: 0.95rem;
  }
}
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.content-section a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.25s ease;
}

.content-section a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

