/* ==========================================================================
   SprintWeb Studio — Mobile-First Unconventional Design v3
   ========================================================================== */

:root {
  --bg: #FAF8F2;
  --bg-dark: #F0EDE5;
  --text: #141414;
  --text-muted: #5A5A5A;
  --accent: #C39E64;
  --accent-dark: #A17F4A;
  --secondary: #184A3B;
  --white: #FFFFFF;
  
  --font-main: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  --radius: 8px;
  --radius-lg: 16px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

/* Language Toggle */
html[data-lang="ro"] [data-lang="hu"] { display: none !important; }
html[data-lang="hu"] [data-lang="ro"] { display: none !important; }

.hidden { 
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

/* ==========================================================================
   Language Toggle — Floating Pill (mobile-first)
   ========================================================================== */

.lang-toggle {
  position: fixed;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 1000;
  display: flex;
  background: var(--text);
  border-radius: 50px;
  padding: 3px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--bg);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--accent);
  color: var(--text);
}

.lang-btn:hover:not(.active) {
  background: rgba(255,255,255,0.1);
}

/* ==========================================================================
   Dock Navigation — Mobile-first icons only
   ========================================================================== */

.dock-nav {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  gap: 1px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 50px;
  padding: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.08);
}

.dock-item {
  text-decoration: none;
  color: rgba(250, 248, 242, 0.5);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 10px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dock-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: var(--transition);
}

.dock-item span {
  display: none;
}

.dock-item:hover {
  color: var(--bg);
  background: rgba(255, 255, 255, 0.1);
}

.dock-item:hover .dock-icon {
  opacity: 1;
}

.dock-item.active {
  background: var(--accent);
  color: var(--text);
}

.dock-item.active .dock-icon {
  opacity: 1;
}

/* ==========================================================================
   Honeycomb Background — hidden on mobile, shown on desktop
   ========================================================================== */

.honeycomb-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  display: none;
}

.hex {
  position: absolute;
  width: 200px;
  height: 230px;
  background: var(--accent);
  opacity: 0.06;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 20s ease-in-out;
}

.hex-1 { top: -50px; right: 10%; transform: rotate(15deg); }
.hex-2 { top: 30%; left: -80px; width: 300px; height: 345px; transform: rotate(-10deg); }
.hex-3 { bottom: 20%; right: -50px; width: 250px; height: 288px; }
.hex-4 { bottom: -100px; left: 20%; transform: rotate(25deg); }
.hex-5 { top: 60%; left: 40%; width: 150px; height: 173px; opacity: 0.03; }

/* ==========================================================================
   Lottie Player Global Styles
   ========================================================================== */

lottie-player {
  display: block;
  filter: sepia(0.35) saturate(1.4) hue-rotate(-5deg) brightness(1.05);
}

.section-process lottie-player,
.section-contact lottie-player {
  filter: sepia(0.25) saturate(1.2) hue-rotate(-10deg) brightness(1.15);
}

.lottie-hero {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.lottie-trust {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.lottie-process {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* Hidden on mobile */
.lottie-contact {
  display: none;
}

/* ==========================================================================
   Sections — Mobile Base
   ========================================================================== */

.section {
  min-height: auto;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: var(--space-md);
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

/* ==========================================================================
   Intro / Hero — Mobile-first stacked layout
   ========================================================================== */

.section-intro {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-dark) 100%);
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--space-xl);
  padding-bottom: calc(var(--space-xl) + 60px); /* space for dock */
}

.intro-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.intro-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-mark {
  width: 44px;
  height: 44px;
  color: var(--accent);
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.intro-content {
  order: 1;
}

.intro-title {
  font-size: clamp(2rem, 10vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
}

.title-line.accent {
  color: var(--accent);
  font-style: italic;
}

.intro-visual {
  order: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
}

.hero-image {
  width: 100%;
  flex: 1;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.intro-meta {
  order: 3;
}

.intro-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.intro-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.intro-bullets li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.intro-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

.intro-cta {
  order: 4;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.intro-trust {
  order: 5;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: var(--space-md);
  margin-top: var(--space-xs);
}

/* ==========================================================================
   Trust Strip — Mobile stacked
   ========================================================================== */

.trust-strip {
  position: relative;
  z-index: 1;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 2px 0 0;
}

/* ==========================================================================
   Buttons — Mobile-first
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-ghost:hover {
  background: var(--text);
  color: var(--bg);
}

/* ==========================================================================
   Services — Mobile single column
   ========================================================================== */

.section-services {
  background: var(--bg);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1200px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-card > h3,
.service-card > p {
  padding: 0 var(--space-md);
}

.service-card > h3 {
  padding-top: var(--space-md);
}

.service-card > p {
  padding-bottom: var(--space-md);
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.4;
  line-height: 1;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.service-card h3 span {
  color: var(--accent);
  font-weight: 500;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.services-note {
  margin-top: var(--space-lg);
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 600px;
}

/* ==========================================================================
   Packages — Mobile single column, featured first
   ========================================================================== */

.section-packages {
  background: var(--text);
  color: var(--bg);
}

.section-packages .section-label {
  color: var(--accent);
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1100px;
}

.package-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: var(--transition);
}

.package-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent);
}

.package-card.featured {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
  order: -1;
}

.package-card.featured:hover {
  transform: scale(1.02);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.package-header {
  text-align: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.package-card.featured .package-header {
  border-color: rgba(0,0,0,0.1);
}

.package-name {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.package-price {
  font-size: 1.15rem;
  color: var(--accent);
}

.package-card.featured .package-price {
  color: var(--text);
}

.package-features {
  list-style: none;
}

.package-features li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}

.package-card.featured .package-features li::before {
  color: var(--secondary);
}

.packages-notes {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.hosting-callout {
  margin-top: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(195, 158, 100, 0.12);
  border: 1px solid rgba(195, 158, 100, 0.3);
  border-radius: var(--radius-lg);
  max-width: 600px;
}

.hosting-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hosting-callout strong {
  display: block;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.hosting-callout p {
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.5;
}

.packages-notes p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   Portfolio — Minimal Device Mockups (Laptop + Tablet + Mobile)
   ========================================================================== */

.section-portfolio {
  background: var(--bg);
  overflow: hidden;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.portfolio-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

.portfolio-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Devices Container */
.devices {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 130px;
  margin-bottom: var(--space-sm);
}

/* Generic Device Styles */
.device {
  position: absolute;
  background: #1a1a1a;
  border-radius: 4px;
  padding: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.device-screen {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Laptop */
.device-laptop {
  width: 180px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  border-radius: 4px 4px 0 0;
  padding: 4px 4px 0;
}

.device-laptop::after {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 0 0 2px 2px;
  margin: 0 -4px;
  margin-top: 2px;
}

.device-laptop .device-screen {
  aspect-ratio: 16/10;
}

/* Tablet */
.device-tablet {
  width: 60px;
  right: 20px;
  bottom: 0;
  border-radius: 4px;
  padding: 3px;
}

.device-tablet .device-screen {
  aspect-ratio: 3/4;
  border-radius: 2px;
}

/* Mobile */
.device-mobile {
  width: 36px;
  left: 20px;
  bottom: 0;
  border-radius: 6px;
  padding: 3px 2px;
}

.device-mobile .device-screen {
  aspect-ratio: 9/19;
  border-radius: 3px;
}

/* Portfolio Meta */
.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xs);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.portfolio-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.portfolio-meta svg {
  color: var(--text-muted);
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-meta svg {
  color: var(--primary);
  transform: translate(2px, -2px);
}

/* ==========================================================================
   Process — Mobile single column, no visual
   ========================================================================== */

.section-process {
  background: var(--secondary);
  color: var(--bg);
}

.section-process .section-label {
  color: var(--accent);
}

.process-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 1100px;
}

.process-visual {
  display: none;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  transition: var(--transition);
}

.process-step:hover {
  background: rgba(255,255,255,0.1);
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
}

.step-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.5;
}

/* ==========================================================================
   FAQ — Mobile single column, no image
   ========================================================================== */

.section-faq {
  background: var(--bg);
}

.faq-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 1100px;
}

.faq-visual {
  display: none;
}

.faq-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.faq-list {
  max-width: 700px;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-item summary {
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

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

.faq-answer {
  padding-bottom: var(--space-md);
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ==========================================================================
   Contact — Mobile stacked
   ========================================================================== */

.section-contact {
  background: var(--bg);
  min-height: auto;
  padding-top: var(--space-lg);
  padding-bottom: 0;
}

.section-contact .section-label {
  margin-bottom: var(--space-md);
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 1100px;
}

.contact-intro {
  padding-right: 0;
}

.contact-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

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

.contact-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  background: var(--bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

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

.btn-submit {
  width: 100%;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: var(--space-md);
  text-align: center;
}

.form-status p {
  display: none;
  padding: var(--space-sm);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
}

.form-status .status-success {
  background: rgba(24, 74, 59, 0.1);
  color: var(--secondary);
}

.form-status .status-error {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.form-status.success .status-success { display: block; }
.form-status.error .status-error { display: block; }

/* ==========================================================================
   Footer — Mobile stacked
   ========================================================================== */

.site-footer {
  background: var(--text);
  color: var(--bg);
  padding: var(--space-lg) var(--space-md);
  padding-bottom: calc(var(--space-lg) + 70px); /* space for dock */
  margin-top: var(--space-xl);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
}

.footer-logo {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-nav a {
  color: var(--bg);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.6;
  transition: var(--transition);
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-legal {
  width: 100%;
  font-size: 13px;
  opacity: 0.6;
  margin-top: var(--space-xs);
  font-weight: 500;
}

.footer-copy {
  width: 100%;
  font-size: 12px;
  opacity: 0.4;
  margin-top: var(--space-xs);
}

/* ==========================================================================
   TABLET — min-width: 600px
   ========================================================================== */

@media (min-width: 600px) {
  :root {
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  .section {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .lang-toggle {
    top: var(--space-md);
    right: var(--space-md);
  }
  
  .lang-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .section-label {
    font-size: 11px;
  }
  
  /* Intro */
  .intro-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
  
  .intro-visual {
    flex-direction: row;
    align-items: center;
  }
  
  .hero-image {
    height: 180px;
  }
  
  .lottie-hero {
    max-width: 220px;
  }
  
  .intro-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .intro-sub {
    font-size: 1rem;
  }
  
  .intro-bullets {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
  }
  
  .intro-bullets li {
    font-size: 15px;
  }
  
  .intro-trust {
    font-size: 14px;
  }
  
  /* Trust */
  .trust-strip {
    padding: var(--space-lg);
  }
  
  .lottie-trust {
    width: 56px;
    height: 56px;
  }
  
  /* Services — 2 columns */
  .services-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-img {
    height: 180px;
  }
  
  .service-card h3 {
    font-size: 1.35rem;
  }
  
  /* Portfolio — Tablet */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .devices {
    height: 130px;
  }

  .device-laptop {
    width: 150px;
  }

  .device-tablet {
    width: 55px;
    right: 10px;
  }

  .device-mobile {
    width: 32px;
    left: 10px;
  }
  
  /* FAQ image visible */
  .faq-image {
    height: 300px;
  }
  
  /* Contact */
  .contact-text {
    font-size: 1.15rem;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md) var(--space-lg);
  }
  
  .footer-tagline {
    flex: 1;
    font-size: 15px;
  }
  
  .footer-logo {
    width: 32px;
    height: 32px;
  }
}

/* ==========================================================================
   DESKTOP — min-width: 900px
   ========================================================================== */

@media (min-width: 900px) {
  :root {
    --space-lg: 4rem;
    --space-xl: 6rem;
  }
  
  .section {
    min-height: 100vh;
  }
  
  .section-label {
    font-size: clamp(10px, 1.5vw, 12px);
    margin-bottom: var(--space-lg);
  }
  
  /* Dock — show labels on hover/active */
  .dock-nav {
    bottom: 24px;
    padding: 6px;
    gap: 2px;
  }
  
  .dock-item {
    padding: 10px 14px;
    font-size: 11px;
    gap: 6px;
  }
  
  .dock-icon {
    width: 14px;
    height: 14px;
  }
  
  .dock-item:hover span,
  .dock-item.active span {
    display: inline;
  }
  
  /* Honeycomb visible */
  .honeycomb-bg {
    display: block;
  }
  
  /* Intro — grid layout */
  .section-intro {
    padding: var(--space-xl) var(--space-lg);
    padding-bottom: var(--space-xl);
  }
  
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr auto;
    grid-template-rows: auto 1fr auto auto;
    gap: var(--space-md) var(--space-lg);
    max-width: 1400px;
  }
  
  .intro-brand {
    grid-column: 1;
    grid-row: 1;
  }
  
  .logo-mark {
    width: 60px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 14px;
  }
  
  .intro-content {
    grid-column: 1 / 3;
    grid-row: 2;
    order: unset;
  }
  
  .intro-title {
    font-size: clamp(3rem, 6vw, 6rem);
  }
  
  .title-line.accent {
    transform: translateX(5%);
  }
  
  .intro-visual {
    grid-column: 3;
    grid-row: 1 / 4;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    order: unset;
  }
  
  .hero-image {
    width: 280px;
    flex: none;
    height: 200px;
  }
  
  .hero-image:hover {
    transform: scale(1.03) rotate(-1deg);
  }
  
  .lottie-hero {
    max-width: 320px;
  }
  
  .intro-meta {
    grid-column: 2;
    grid-row: 3;
    order: unset;
  }
  
  .intro-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }
  
  .intro-cta {
    grid-column: 1;
    grid-row: 3;
    flex-direction: column;
    order: unset;
    align-self: start;
  }
  
  .intro-trust {
    grid-column: 1 / -1;
    grid-row: 4;
    font-size: 15px;
    order: unset;
  }
  
  /* Trust — horizontal */
  .trust-items {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-xl);
  }
  
  .trust-item strong {
    font-size: 1rem;
  }
  
  .trust-item p {
    font-size: 14px;
  }
  
  .lottie-trust {
    width: 64px;
    height: 64px;
  }
  
  /* Services — 3 columns with offset */
  .services-layout {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-card:nth-child(2) {
    transform: translateY(var(--space-lg));
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
  
  .service-card:nth-child(2):hover {
    transform: translateY(calc(var(--space-lg) - 8px));
  }
  
  .service-card::before {
    font-size: 48px;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
  }
  
  .service-card p {
    font-size: 15px;
  }
  
  /* Packages — 3 columns with featured scale */
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .package-card.featured {
    order: 0;
    transform: scale(1.05);
  }
  
  .package-card.featured:hover {
    transform: scale(1.08);
  }
  
  .package-name {
    font-size: 1.5rem;
  }
  
  .package-price {
    font-size: 1.25rem;
  }
  
  .package-features li {
    font-size: 15px;
  }
  
  .packages-notes {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
  }
  
  .hosting-callout {
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
  }
  
  .hosting-icon {
    font-size: 2rem;
  }
  
  .hosting-callout strong {
    font-size: 1.1rem;
  }
  
  .hosting-callout p {
    font-size: 14px;
  }
  
  .packages-notes p {
    font-size: 13px;
  }
  
  /* Portfolio — Desktop */
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .portfolio-card {
    padding: var(--space-md);
  }

  .devices {
    height: 160px;
  }

  .device-laptop {
    width: 180px;
  }

  .device-tablet {
    width: 72px;
    right: 10px;
  }

  .device-mobile {
    width: 42px;
    left: 10px;
  }

  .portfolio-title {
    font-size: 1rem;
  }
  
  /* Process — grid with visual */
  .process-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .process-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .process-step:hover {
    transform: translateX(8px);
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 14px;
  }
  
  /* FAQ — side-by-side with image */
  .faq-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
  
  .faq-visual {
    display: block;
    position: sticky;
    top: var(--space-xl);
  }
  
  .faq-image {
    width: 320px;
    height: 400px;
  }
  
  .faq-item summary {
    font-size: 1.125rem;
  }
  
  .faq-answer p {
    font-size: 15px;
  }
  
  /* Contact — split layout with diagonal bg */
  .section-contact {
    background: linear-gradient(135deg, var(--bg) 50%, var(--accent) 50%);
  }
  
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .contact-intro {
    padding-right: var(--space-lg);
  }
  
  .contact-text {
    font-size: 1.25rem;
  }
  
  /* Lottie contact visible on desktop */
  .lottie-contact {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-top: var(--space-lg);
    opacity: 0.8;
  }
  
  .contact-form {
    padding: var(--space-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
  
  .form-group label {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
  }
  
  /* Footer */
  .site-footer {
    padding: var(--space-lg);
    padding-bottom: calc(var(--space-lg) + 80px);
    margin-top: var(--space-xl);
  }
  
  .footer-content {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md) var(--space-xl);
  }
  
  .footer-nav {
    gap: var(--space-md);
  }
  
  .footer-nav a {
    font-size: 14px;
  }
  
  .footer-copy {
    font-size: 13px;
  }
}

/* ==========================================================================
   LARGE DESKTOP — min-width: 1200px
   ========================================================================== */

@media (min-width: 1200px) {
  :root {
    --space-xl: 8rem;
  }
  
  .intro-title {
    font-size: clamp(4rem, 7vw, 6rem);
  }

  /* Portfolio — larger devices on big screens */
  .devices {
    height: 180px;
  }

  .device-laptop {
    width: 200px;
  }

  .device-tablet {
    width: 80px;
  }

  .device-mobile {
    width: 48px;
  }
}

/* ==========================================================================
   Animations & Polish
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .package-card,
  .portfolio-card,
  .process-step,
  .trust-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
  }
  
  .trust-item:nth-child(1) { animation-delay: 0.1s; }
  .trust-item:nth-child(2) { animation-delay: 0.2s; }
  .trust-item:nth-child(3) { animation-delay: 0.3s; }
  
  .service-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2) { animation-delay: 0.2s; }
  .service-card:nth-child(3) { animation-delay: 0.3s; }
  
  .package-card:nth-child(1) { animation-delay: 0.1s; }
  .package-card:nth-child(2) { animation-delay: 0.2s; }
  .package-card:nth-child(3) { animation-delay: 0.3s; }

  .portfolio-card:nth-child(1) { animation-delay: 0.1s; }
  .portfolio-card:nth-child(2) { animation-delay: 0.15s; }
  .portfolio-card:nth-child(3) { animation-delay: 0.2s; }
  .portfolio-card:nth-child(4) { animation-delay: 0.25s; }
  .portfolio-card:nth-child(5) { animation-delay: 0.3s; }
  
  .process-step:nth-child(1) { animation-delay: 0.1s; }
  .process-step:nth-child(2) { animation-delay: 0.15s; }
  .process-step:nth-child(3) { animation-delay: 0.2s; }
  .process-step:nth-child(4) { animation-delay: 0.25s; }
  .process-step:nth-child(5) { animation-delay: 0.3s; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parallax hex movement — only on desktop */
@media (prefers-reduced-motion: no-preference) and (min-width: 900px) {
  .hex-1 { animation: float1 25s ease-in-out infinite; }
  .hex-2 { animation: float2 30s ease-in-out infinite; }
  .hex-3 { animation: float3 28s ease-in-out infinite; }
}

@keyframes float1 {
  0%, 100% { transform: rotate(15deg) translate(0, 0); }
  50% { transform: rotate(20deg) translate(20px, 30px); }
}

@keyframes float2 {
  0%, 100% { transform: rotate(-10deg) translate(0, 0); }
  50% { transform: rotate(-5deg) translate(25px, -20px); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 25px); }
}
