/* ============================================================
   GLOBALS — Digital Marketing Agency
   Design: Trustworthy Corporate, Plus Jakarta Sans, Royal Blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Core Palette */
  --bg: #ffffff;          /* Fundal alb curat, inspiră transparență */
  --bg-2: #f8fafc;        /* Gri extrem de deschis pentru secțiuni alternative */
  --bg-3: #f1f5f9;        /* Gri deschis pentru hover/carduri */
  
  /* Text Colors */
  --text-main: #0f172a;   /* Slate închis pentru text, mai elegant decât negrul pur */
  --text-muted: #475569;  /* Gri profesional pentru subtitluri și paragrafe */
  --white: #ffffff;
  
  /* Accents */
  --accent: #2563eb;      /* Royal Blue - inspiră încredere, competență */
  --accent-hover: #1d4ed8;/* Nuanta mai inchisa pentru hover */
  --accent-dim: rgba(37, 99, 235, 0.08); /* Albastru transparent pentru fundaluri subtile */
  
  /* UI Elements */
  --border: #e2e8f0;      /* Linii de demarcație fine */
  --radius: 8px;          /* Colțuri rotunjite, abordabile dar serioase */
  --trans: all 0.3s ease;
  
  /* Typography */
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-head: 'Plus Jakarta Sans', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default; /* Resetare la cursorul nativ, profesional */
}

/* Ascundem orice cursor personalizat vechi din HTML, daca exista */
.custom-cursor, .cursor-dot, .cursor-ring { display: none !important; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; color: var(--text-main); }
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
p  { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }
a  { color: inherit; text-decoration: none; transition: color 0.2s; }

.accent { color: var(--accent); }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-main); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0; text-transform: none; /* Renunțăm la ALL-CAPS-ul exagerat */
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: var(--trans); text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.2); /* Umbră fină pentru eleganță */
}
.btn-primary:hover { 
  background: var(--accent-hover); 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.3); 
}

.btn-outline {
  background: transparent; color: var(--text-main);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-2); }

.btn svg { width: 18px; height: 18px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(4px); }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.4rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Umbră în loc de border dur */
}
.header-inner { display: flex; align-items: center; gap: 2rem; }
.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--text-main); }
.logo-dot { color: var(--accent); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; list-style: none; gap: 0.5rem; }
.main-nav a {
  padding: 0.5rem 0.9rem; font-size: 0.95rem; font-weight: 500;
  color: var(--text-muted); border-radius: var(--radius);
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); }

.btn-header {
  padding: 0.65rem 1.5rem;
  background: var(--accent); color: var(--white);
  font-weight: 600; font-size: 0.9rem;
  border-radius: var(--radius); transition: var(--trans);
  white-space: nowrap;
}
.btn-header:hover { background: var(--accent-hover); box-shadow: 0 4px 12px rgba(37,99,235,0.2); }

/* Stilizare inițială a hamburgerului pt desktop (ascuns) */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); transition: var(--trans); }

/* ── Section helpers ── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--accent);
}

/* Grafică Vectorială pentru Delimitare Secțiuni */
.shape-divider {
  position: absolute; bottom: 0; left: 0; width: 100%;
  overflow: hidden; line-height: 0; transform: translateY(1px);
}
.shape-divider svg { display: block; width: calc(100% + 1.3px); height: 60px; }
.section-relative { position: relative; padding-bottom: 80px; }


/* ── Hero (FIX ALINIERE) ── */
.hero {
  padding: 13rem 0 10rem; /* Oferă spațiu generos sus și jos în mod egal, în loc de min-height instabil */
  position: relative; 
  overflow: hidden;
  background: var(--bg-2);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner { 
  position: relative; 
  z-index: 1; 
  display: grid; 
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 4rem; 
  align-items: center; 
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--white); border: 1px solid var(--border);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  margin-bottom: 1.5rem; box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.hero-eyebrow span { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

.hero h1 { margin-bottom: 1.2rem; }
.hero p.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; flex-direction: column; gap: 2rem;
  padding-left: 3rem; border-left: 1px solid var(--border);
}
.stat-num { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--text-main); }
.stat-num .plus { color: var(--accent); font-size: 2.5rem; }
.stat-label { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); margin-top: 0.5rem; }

/* ── Marquee ── */
.marquee-section {
  padding: 2rem 0; background: var(--white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-item {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-main); font-size: 0.9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted);
}
.marquee-item .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* ── Services grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 2.5rem; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: all var(--trans);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); border-color: var(--accent-dim); }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--accent-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 24px; height: 24px; color: var(--accent); }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; color: var(--text-main); }
.service-card p { font-size: 0.95rem; color: var(--text-muted); }
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem; font-size: 0.9rem; font-weight: 600;
  color: var(--accent); transition: gap 0.2s;
}
.service-link:hover { gap: 0.9rem; }

/* ── Why us ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.why-image-wrap {
  background: var(--bg-2); border: 1px solid var(--border);
  aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.big-number {
  font-family: var(--font-head); font-size: 10rem; font-weight: 800;
  color: rgba(37,99,235,0.05); line-height: 1;
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.why-badge {
  position: absolute; bottom: -2rem; left: -2rem;
  background: var(--white); color: var(--text-main);
  padding: 1.5rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.why-badge strong { font-size: 2.2rem; font-weight: 800; color: var(--accent); display: block; line-height: 1; margin-bottom: 0.3rem;}
.why-badge span { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }

.why-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.why-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; transition: border-color var(--trans);
}
.why-list li:hover { border-color: var(--accent); box-shadow: 0 4px 12px rgba(37,99,235,0.05); }
.why-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--accent-dim); color: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-list li div strong { color: var(--text-main); font-size: 1rem; display: block; margin-bottom: 0.2rem; }
.why-list li div span { font-size: 0.9rem; color: var(--text-muted); }

/* ── Process ── */
.process-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 4rem; }
.process-step { position: relative; background: var(--white); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); }
.step-num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
  color: var(--accent-dim); line-height: 1; margin-bottom: 1.2rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text-main); }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* ── Portfolio ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.portfolio-item {
  position: relative; overflow: hidden; border-radius: 12px;
  background: var(--white); border: 1px solid var(--border);
  aspect-ratio: 4/3; cursor: pointer; transition: transform var(--trans), box-shadow var(--trans);
}
.portfolio-item:first-child { grid-column: span 2; aspect-ratio: 16/7; }
.portfolio-item:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }
.portfolio-thumb {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); font-size: 3rem; color: var(--border); font-weight: 800;
}
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
  padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity var(--trans);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: #60a5fa; margin-bottom: 0.5rem; }
.portfolio-title { font-size: 1.4rem; font-weight: 700; color: var(--white); }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 2.5rem; border-radius: 12px; box-shadow: 0 4px 14px rgba(0,0,0,0.02);
}
.stars { color: #fbbf24; font-size: 1.2rem; margin-bottom: 1.2rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; color: var(--text-main); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--text-main); }
.author-role { font-size: 0.85rem; color: var(--text-muted); }

/* ── CTA ── */
.cta-section {
  background: var(--bg-2); color: var(--text-main);
  padding: 6rem 0; text-align: center; border-top: 1px solid var(--border);
}
.cta-section h2 { color: var(--text-main); }
.cta-section p { color: var(--text-muted); max-width: 600px; margin: 1.5rem auto 2.5rem; font-size: 1.1rem; }

/* ── Paid Media / Pages Specifics ── */
.pm-hero { padding-top: 12rem; padding-bottom: 6rem; background: var(--bg-2); }
.platforms-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 4rem; }
.platform-card {
  background: var(--white); padding: 2.5rem 1.5rem; text-align: center;
  border-radius: 12px; border: 1px solid var(--border);
}
.platform-logo {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--accent-dim); margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}

/* ── Servicii page ── */
.services-detailed { display: flex; flex-direction: column; gap: 3rem; margin-top: 3rem; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row-visual {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 16px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
}
.service-row-visual svg { width: 120px; height: 120px; color: var(--accent); opacity: 0.8; }
.service-row-content h2 { font-size: 2.2rem; margin-bottom: 1.2rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.5rem; }
.feature-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 1rem; color: var(--text-muted); font-weight: 500;}

/* ── About page ── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3rem; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; text-align: center;
}
.team-photo { aspect-ratio: 1; background: var(--bg-2); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.1rem; color: var(--text-main); margin-bottom: 0.3rem; }
.team-info span { font-size: 0.9rem; color: var(--accent); font-weight: 600; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.value-card { background: var(--bg-2); border: 1px solid var(--border); padding: 2.5rem; border-radius: 12px; }
.value-num { font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 1rem; }

/* ── Contact page & Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 2rem; margin: 2rem 0; }
.contact-info-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.ci-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 20px; height: 20px; color: var(--accent); }
.ci-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.2rem; }
.ci-value { font-size: 1rem; font-weight: 600; color: var(--text-main); }

.contact-form { background: var(--white); border: 1px solid var(--border); padding: 3rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.9rem 1rem;
  background: var(--white); color: var(--text-main);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-main); font-size: 1rem; outline: none; transition: var(--trans);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.alert-success { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; padding: 1rem; border-radius: 8px; font-weight: 500; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: 1rem; border-radius: 8px; font-weight: 500; }

/* ── Portfolio filters ── */
.filter-bar { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }
.filter-btn {
  padding: 0.6rem 1.5rem; font-size: 0.9rem; font-weight: 600;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--white); color: var(--text-muted);
  cursor: pointer; transition: var(--trans);
}
.filter-btn.active, .filter-btn:hover { background: var(--text-main); border-color: var(--text-main); color: var(--white); }

/* ── Page hero defaults ── */
.page-hero { padding: 12rem 0 6rem; text-align: center; background: var(--bg-2); }
.page-hero p { font-size: 1.15rem; max-width: 600px; margin: 1.5rem auto 0; }

/* ── Footer ── */
.site-footer { background: var(--text-main); color: var(--white); padding: 5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .logo { color: var(--white); }
.footer-brand p { font-size: 0.95rem; color: #94a3b8; margin-top: 1.5rem; max-width: 320px; }
.footer-social { display: flex; gap: 1rem; margin-top: 2rem; }
.footer-social a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--trans);
}
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul li a { color: #94a3b8; font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem; color: #94a3b8;
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow { margin: 0 auto 1.5rem; }
  .hero p.lead { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { flex-direction: row; justify-content: center; padding-left: 0; border-left: none; padding-top: 2rem; border-top: 1px solid var(--border); }
  .services-grid, .team-grid, .platforms-grid, .process-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2.2rem; }
  .section { padding: 4rem 0; }
  
  /* --- REZOLVARE HEADER & HAMBURGER --- */
  .header-inner { 
    justify-content: space-between; 
    width: 100%; 
  }
  .btn-header { display: none; }
  
  .logo, .hamburger { 
    position: relative; 
    z-index: 1001; 
  }
  .hamburger { 
    display: flex; 
  }

  .main-nav {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh;
    background: var(--bg); 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    opacity: 0; 
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .main-nav.open {
    opacity: 1; 
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column; 
    align-items: center; 
    gap: 2.5rem;
  }
  
  .main-nav a { 
    font-size: 1.5rem; 
    font-weight: 600; 
    padding: 1rem;
    color: var(--text-main);
  }
  /* --- END REZOLVARE HEADER --- */

  .services-grid, .portfolio-grid, .testimonials-grid, .team-grid, .platforms-grid, .values-grid { grid-template-columns: 1fr; }
  .contact-grid, .service-row { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top, .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats { flex-direction: column; align-items: center; gap: 1.5rem;}
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
}