/* ============================================
   VStoneBay — Neo Brutalist Design System
   ============================================ */

:root {
  /* Color Palette — Neo Brutalist */
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --accent-light: #ffd280;
  --secondary: #e8f4f8;
  --highlight: #2ec4b6;
  --highlight-dark: #1fa89e;
  --danger: #e63946;
  --success: #2d6a4f;
  --bg-main: #f5f3ee;
  --bg-white: #fefefe;
  --bg-dark: #111118;
  --bg-card: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-muted: #7a7a9a;
  --text-light: #f5f3ee;
  --border-color: #1a1a2e;
  --border-width: 3px;

  /* Shadow System — Neo Brutalist Hard Shadows */
  --shadow-sm: 3px 3px 0px var(--primary);
  --shadow-md: 5px 5px 0px var(--primary);
  --shadow-lg: 8px 8px 0px var(--primary);
  --shadow-xl: 12px 12px 0px var(--primary);
  --shadow-accent: 5px 5px 0px var(--accent);
  --shadow-highlight: 5px 5px 0px var(--highlight);

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Border Radius Scale */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Typography */
  --font-main: 'Nunito Sans', sans-serif;

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
  --transition-slow: 400ms ease-out;
}

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main, section {
  flex: 1;
}

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

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

ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

p:last-child { margin-bottom: 0; }

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

.floating-nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  background: var(--bg-white);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.floating-nav.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(254,254,254,0.97);
  backdrop-filter: blur(8px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--bg-main);
  border-color: var(--primary);
}

.nav-link.nav-cta {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.nav-link.nav-cta:hover {
  background: var(--accent-dark);
  box-shadow: 3px 3px 0px var(--primary);
  transform: translate(-1px, -1px);
}

.nav-link.nav-cta.active {
  background: var(--primary);
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--bg-white);
  border-left: var(--border-width) solid var(--border-color);
  z-index: 2000;
  padding: 2rem;
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
}

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

.mobile-close {
  align-self: flex-end;
  background: none;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all var(--transition-base);
}

.mobile-close:hover {
  background: var(--accent);
  box-shadow: var(--shadow-sm);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.mobile-menu ul li a:hover {
  background: var(--bg-main);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

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

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
  gap: 4rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(245,166,35,0.06) 60px, rgba(245,166,35,0.06) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(245,166,35,0.06) 60px, rgba(245,166,35,0.06) 61px);
  pointer-events: none;
}

.hero-content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: 3px 3px 0px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-accent {
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(245,243,238,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: rgba(245,243,238,0.8);
}

.hero-note i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.hero-img-frame {
  position: relative;
  border: var(--border-width) solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 10px 10px 0px var(--accent);
  overflow: hidden;
  max-width: 480px;
  transform-style: preserve-3d;
}

.hero-img {
  width: 480px;
  max-width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.hero-img-frame:hover .hero-img {
  transform: scale(1.03);
}

.hero-img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  border: var(--border-width) solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px var(--primary);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--primary);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: var(--border-width) solid rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 800;
  padding: 1rem 2rem;
  border: var(--border-width) solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary-lg:hover {
  background: var(--accent-dark);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px var(--primary);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border: var(--border-width) solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-lg:hover {
  background: var(--primary);
  color: var(--accent);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   SECTION COMMONS
   ============================================ */

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0px var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
  background: var(--bg-main);
  padding: var(--space-3xl) 0;
}

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

.benefit-card {
  background: var(--bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  transform-style: preserve-3d;
}

.benefit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-xl);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border: var(--border-width) solid var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  box-shadow: 3px 3px 0px var(--primary);
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  background: var(--highlight);
  box-shadow: 4px 4px 0px var(--primary);
}

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

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

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

.services-overview {
  background: var(--bg-dark);
  padding: var(--space-3xl) 0;
}

.services-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.services-text-block .section-tag {
  background: var(--highlight);
}

.services-text-block h2 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.services-text-block p {
  color: rgba(245,243,238,0.75);
  margin-bottom: 1rem;
}

.services-text-block .btn-primary {
  margin-top: 1.5rem;
}

.mt-4 { margin-top: 1.5rem; }

.service-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 2px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.04);
  transition: all var(--transition-base);
}

.service-item:hover {
  border-color: var(--accent);
  background: rgba(245,166,35,0.08);
  transform: translateX(4px);
}

.service-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.service-info h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.service-info p {
  color: rgba(245,243,238,0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   HOW WE WORK SECTION
   ============================================ */

.how-section {
  background: var(--bg-main);
  padding: var(--space-3xl) 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.how-card {
  background: var(--bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.how-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-xl);
}

.how-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: var(--border-width) solid var(--border-color);
  transition: transform var(--transition-slow);
}

.how-card:hover .how-img {
  transform: scale(1.04);
}

.how-card-body {
  padding: 1.5rem;
}

.how-step {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--accent-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.how-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.how-card-body p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   APPLICATIONS SECTION
   ============================================ */

.apps-section {
  background: var(--secondary);
  padding: var(--space-3xl) 0;
  border-top: var(--border-width) solid var(--border-color);
  border-bottom: var(--border-width) solid var(--border-color);
}

.apps-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.apps-left .section-title {
  margin-bottom: 1rem;
}

.apps-left p {
  margin-bottom: 1rem;
}

.apps-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.app-category {
  background: var(--bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.app-category:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.app-category h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-category h4 i {
  color: var(--accent);
  font-size: 1rem;
}

.app-category ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.app-category ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}

.app-category ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================
   TARGET SECTION
   ============================================ */

.target-section {
  background: var(--bg-main);
  padding: var(--space-3xl) 0;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.target-card {
  background: var(--bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
}

.target-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--highlight);
  box-shadow: 6px 6px 0px var(--highlight);
}

.target-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 1rem;
  transition: all var(--transition-base);
}

.target-card:hover .target-icon {
  background: var(--accent);
  color: var(--primary);
}

.target-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.target-card p {
  font-size: 0.88rem;
  margin: 0;
}

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

.faq-section {
  background: var(--bg-dark);
  padding: var(--space-3xl) 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.faq-left .section-tag {
  background: var(--highlight);
}

.faq-left h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.faq-left p {
  color: rgba(245,243,238,0.75);
}

.faq-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: var(--border-width) solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 6px 6px 0px var(--accent);
  margin-top: 2rem;
}

.faq-item {
  border: 2px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-base);
}

.faq-question:hover {
  background: rgba(245,166,35,0.1);
}

.faq-question span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-main);
  line-height: 1.4;
}

.faq-icon {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: rgba(245,243,238,0.8);
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--bg-main);
  padding: var(--space-2xl) 0;
}

.cta-box {
  background: var(--primary);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-content h2 {
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: rgba(245,243,238,0.8);
  max-width: 500px;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

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

.footer {
  background: var(--primary);
  border-top: var(--border-width) solid var(--accent);
  margin-top: auto;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245,243,238,0.7);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(245,243,238,0.5);
  font-style: italic;
  margin: 0;
}

.footer-links-block h4,
.footer-contact-block h4 {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-block ul li a {
  font-size: 0.9rem;
  color: rgba(245,243,238,0.75);
  transition: color var(--transition-base);
}

.footer-links-block ul li a:hover {
  color: var(--accent);
}

.footer-contact-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(245,243,238,0.75);
}

.footer-contact-block ul li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-block ul li a {
  color: rgba(245,243,238,0.75);
  transition: color var(--transition-base);
}

.footer-contact-block ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(245,166,35,0.2);
  padding: 1.25rem 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(245,243,238,0.5);
  margin: 0;
}

.footer-bottom a {
  color: rgba(245,243,238,0.5);
  transition: color var(--transition-base);
}

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

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  position: relative;
}

.page-hero-alt {
  background: linear-gradient(135deg, #0f3460 0%, var(--primary) 100%);
}

.page-hero-green {
  background: linear-gradient(135deg, #0d4f3c 0%, var(--primary) 100%);
}

.page-hero-dark {
  background: linear-gradient(135deg, #111118 0%, var(--primary) 100%);
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-content h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(245,243,238,0.8);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   ABOUT SECTION (experienta-noastra)
   ============================================ */

.about-section {
  background: var(--bg-main);
  padding: var(--space-3xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-title {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
  background: var(--secondary);
  padding: var(--space-3xl) 0;
  border-top: var(--border-width) solid var(--border-color);
  border-bottom: var(--border-width) solid var(--border-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  transform-style: preserve-3d;
}

.value-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-xl);
}

.value-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================
   TECH KNOWLEDGE SECTION
   ============================================ */

.tech-knowledge-section {
  background: var(--bg-main);
  padding: var(--space-3xl) 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.tech-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.tech-right .section-title {
  margin-bottom: 1rem;
}

.tech-right > p {
  margin-bottom: 1.5rem;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.tech-item:hover {
  transform: translateX(4px);
  border-color: var(--highlight);
  box-shadow: 3px 3px 0px var(--highlight);
}

.tech-item > i {
  color: var(--highlight);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.tech-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.tech-item span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location-section {
  background: var(--bg-dark);
  padding: var(--space-3xl) 0;
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location-text .section-tag {
  background: var(--highlight);
}

.location-text h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.location-text p {
  color: rgba(245,243,238,0.75);
  margin-bottom: 1rem;
}

.location-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(245,243,238,0.8);
}

.location-detail i {
  color: var(--accent);
  width: 20px;
  flex-shrink: 0;
}

.location-detail a {
  color: var(--accent);
  transition: opacity var(--transition-base);
}

.location-detail a:hover { opacity: 0.8; }

.location-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: var(--border-width) solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 8px 8px 0px var(--accent);
}

/* ============================================
   SERVICE DETAIL SECTIONS (arii-de-activitate)
   ============================================ */

.service-detail-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-main);
}

.service-detail-section:nth-child(even),
.service-detail-alt {
  background: var(--secondary);
  border-top: var(--border-width) solid var(--border-color);
  border-bottom: var(--border-width) solid var(--border-color);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0px var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-detail-text h2 {
  margin-bottom: 1.25rem;
}

.service-detail-text p {
  margin-bottom: 1rem;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.sdl-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(26,26,46,0.15);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: all var(--transition-base);
}

.sdl-item:hover {
  border-color: var(--accent);
  background: rgba(245,166,35,0.05);
  transform: translateX(4px);
}

.sdl-item i {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.service-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.service-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(46,196,182,0.1);
  border: 2px solid var(--highlight);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
}

.service-note i {
  color: var(--highlight);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-note p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   PROCESS SECTION (ghid-de-colaborare)
   ============================================ */

.process-section {
  background: var(--bg-main);
  padding: var(--space-3xl) 0;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.process-step:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.process-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-align: center;
}

.process-step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-step-content p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.process-step-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.psd-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-main);
  border: 1px solid rgba(26,26,46,0.15);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
}

.psd-item i {
  color: var(--highlight);
  font-size: 0.8rem;
}

/* ============================================
   PREPARE SECTION
   ============================================ */

.prepare-section {
  background: var(--secondary);
  padding: var(--space-3xl) 0;
  border-top: var(--border-width) solid var(--border-color);
  border-bottom: var(--border-width) solid var(--border-color);
}

.prepare-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
}

.prepare-text .section-title {
  margin-bottom: 1rem;
}

.prepare-text > p {
  margin-bottom: 1.5rem;
}

.prepare-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prepare-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.prepare-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.prepare-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 2px 2px 0px var(--primary);
}

.prepare-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.prepare-item p {
  font-size: 0.88rem;
  margin: 0;
}

.prepare-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   CLARIFICATIONS SECTION
   ============================================ */

.clarifications-section {
  background: var(--bg-main);
  padding: var(--space-3xl) 0;
}

.clarif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.clarif-card {
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.clarif-yes {
  background: rgba(45,106,79,0.08);
  border-color: var(--success);
  box-shadow: 5px 5px 0px var(--success);
}

.clarif-no {
  background: rgba(230,57,70,0.06);
  border-color: var(--danger);
  box-shadow: 5px 5px 0px var(--danger);
}

.clarif-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.clarif-header i {
  font-size: 1.5rem;
}

.clarif-yes .clarif-header i { color: var(--success); }
.clarif-no .clarif-header i { color: var(--danger); }

.clarif-header h3 {
  font-size: 1.2rem;
}

.clarif-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.clarif-card ul li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.clarif-yes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

.clarif-no ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 800;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
  background: var(--bg-main);
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-block h2 {
  margin-bottom: 0.75rem;
}

.contact-form-block > p {
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 4px 4px 0px var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  accent-color: var(--accent);
  border: 2px solid var(--border-color);
  border-radius: 2px;
  box-shadow: none;
  margin-top: 2px;
}

.checkbox-label a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.form-submit {
  align-self: flex-start;
  min-width: 180px;
  justify-content: center;
}

.contact-info-card {
  background: var(--bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 2px 2px 0px var(--primary);
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  font-size: 0.92rem;
  margin: 0;
}

.contact-detail a {
  color: var(--accent-dark);
  transition: opacity var(--transition-base);
}

.contact-detail a:hover { opacity: 0.75; }

.contact-note-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(46,196,182,0.08);
  border-color: var(--highlight);
  box-shadow: 4px 4px 0px var(--highlight);
}

.contact-note-icon {
  color: var(--highlight);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-note-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.contact-note-card p {
  font-size: 0.88rem;
  margin: 0;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.coverage-list li i {
  color: var(--success);
}

/* Map Section */
.map-section {
  background: var(--secondary);
  padding: var(--space-2xl) 0;
  border-top: var(--border-width) solid var(--border-color);
}

.map-wrapper h2 {
  margin-bottom: 0.75rem;
}

.map-wrapper > p {
  margin-bottom: 1.5rem;
}

.map-frame {
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  background: var(--bg-main);
}

.thanks-content {
  text-align: center;
  max-width: 600px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.5rem;
}

.thanks-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.thanks-content p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.thanks-note {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 2rem !important;
}

.thanks-note a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-section {
  padding: 8rem 1.5rem 5rem;
  background: var(--bg-main);
  min-height: 70vh;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: var(--border-width) solid var(--border-color);
}

.legal-header h1 {
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--text-primary);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-content ul li {
  list-style: disc;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.cookie-table th {
  background: var(--primary);
  color: var(--accent);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  border: 2px solid var(--primary);
}

.cookie-table td {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(26,26,46,0.15);
  color: var(--text-secondary);
}

.cookie-table tr:nth-child(even) td {
  background: var(--secondary);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 900px;
  background: var(--primary);
  border: var(--border-width) solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from { transform: translateX(-50%) translateY(120%); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.cookie-content {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.cookie-text p {
  font-size: 0.88rem;
  color: rgba(245,243,238,0.8);
  margin: 0;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid;
  white-space: nowrap;
  min-height: 44px;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

.cookie-btn-accept:hover {
  background: var(--accent-dark);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

.cookie-btn-customize {
  background: transparent;
  color: rgba(245,243,238,0.9);
  border-color: rgba(245,243,238,0.4);
}

.cookie-btn-customize:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(245,243,238,0.6);
  border-color: rgba(245,243,238,0.2);
}

.cookie-btn-reject:hover {
  border-color: rgba(245,243,238,0.5);
  color: rgba(245,243,238,0.9);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal-box {
  background: var(--bg-white);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.cookie-modal-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26,26,46,0.1);
}

.cookie-option:last-of-type { border-bottom: none; }

.cookie-option strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.cookie-option p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.cookie-toggle {
  width: 44px !important;
  height: 24px;
  min-width: 44px;
  cursor: pointer;
  accent-color: var(--accent);
  flex-shrink: 0;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border-color);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 8rem 1.5rem 5rem;
  }

  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-note { text-align: left; }

  .hero-img {
    width: 100%;
    max-width: 500px;
    height: 280px;
  }

  .benefits-grid,
  .how-grid,
  .values-grid { grid-template-columns: 1fr 1fr; }

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

  .services-grid-2col,
  .apps-inner,
  .about-grid,
  .tech-grid,
  .location-inner,
  .faq-inner,
  .prepare-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-detail-grid.reverse { direction: ltr; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .tech-img,
  .about-img { height: 300px; }

  .location-img { height: 280px; }
}

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

  .floating-nav {
    width: calc(100% - 2rem);
    top: 0.75rem;
  }

  .hero { padding: 7rem 1.25rem 4rem; }

  .benefits-grid,
  .how-grid,
  .values-grid,
  .target-grid,
  .clarif-grid { grid-template-columns: 1fr; }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .process-step-num { font-size: 2rem; }

  .process-step-details { flex-direction: column; gap: 0.5rem; }

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

  .legal-section { padding: 7rem 1.25rem 3rem; }

  .page-hero { padding: 8rem 1.25rem 3.5rem; }

  .cookie-content { flex-direction: column; gap: 1rem; }

  .cookie-actions { width: 100%; justify-content: center; }

  .section-container { padding: 0 1.25rem; }

  .benefits-section,
  .services-overview,
  .how-section,
  .apps-section,
  .target-section,
  .faq-section,
  .about-section,
  .values-section,
  .tech-knowledge-section,
  .location-section,
  .service-detail-section,
  .process-section,
  .prepare-section,
  .clarifications-section,
  .contact-section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }

  .hero-title { font-size: 2rem; }

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

  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .hero-img { height: 220px; }

  .service-detail-img,
  .how-img { height: 220px; }

  .faq-img { height: 200px; }

  .prepare-img { height: 280px; }

  .cta-box { padding: 2rem 1.25rem; }

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

  .btn-primary-lg, .btn-outline-lg { width: 100%; justify-content: center; }

  .thanks-actions { flex-direction: column; align-items: center; }
}