/* ============================================================
   PC ACCOUNT — stylesheet
   Paletă: albastru (principal) / verde (secundar) / orange (accent)
   ============================================================ */

:root {
  --blue:        #1e5fa8;
  --blue-dark:   #0f3d6e;
  --green:       #2e9e5b;
  --green-dark:  #1f8a4c;
  --orange:      #f5821f;
  --orange-dark: #e26f0c;

  --ink:        #16202e;
  --ink-soft:   #45556a;
  --muted:      #6b7a90;
  --line:       #e3e9f0;
  --bg:         #ffffff;
  --bg-alt:     #f4f8fb;
  --bg-tint:    #eef5f1;

  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 10px 30px rgba(15, 61, 110, .08);
  --shadow-lg:  0 20px 50px rgba(15, 61, 110, .14);
  --container:  1160px;
  --header-h:   72px;

  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --head: "Plus Jakarta Sans", var(--sans);
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--head); line-height: 1.18; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; }

.accent   { color: var(--orange); }
.accent-2 { color: var(--green); }
.nowrap   { white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--head); font-weight: 600; font-size: .98rem;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 8px 20px rgba(30,95,168,.3); }

.btn-accent { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(245,130,31,.28); }
.btn-accent:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(245,130,31,.36); }

.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }

.btn-light { background: #fff; color: var(--blue-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(15,61,110,.07); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 46px; width: auto; }
.footer-logo { height: 52px; width: auto; margin-bottom: 14px; }
.brand-mark { display: grid; place-items: center; }
.brand-text { font-family: var(--head); font-weight: 600; font-size: 1.3rem; color: var(--blue-dark); }
.brand-text strong { color: var(--green); font-weight: 800; }
.brand-text.light { color: #fff; } .brand-text.light strong { color: var(--orange); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.btn) { font-weight: 500; color: var(--ink-soft); font-size: .98rem; position: relative; padding: 4px 0; }
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width .25s ease;
}
.nav > a:not(.btn):hover { color: var(--ink); }
.nav > a:not(.btn):hover::after { width: 100%; }
.nav-cta { font-size: .92rem; padding: 9px 18px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 3px; background: var(--blue-dark); border-radius: 3px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 70px) 0 90px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(46,158,91,.16), transparent 60%),
    radial-gradient(700px 500px at -5% 10%, rgba(30,95,168,.14), transparent 55%),
    linear-gradient(180deg, #fbfdff 0%, #f1f7fb 100%);
}
.hero-bg::after {
  content: ""; position: absolute; right: -120px; top: 40px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,130,31,.12), transparent 70%); border-radius: 50%;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-content { max-width: 640px; }

/* Imagine hero (dreapta) */
.hero-media { position: relative; }
.hero-img {
  width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg);
  display: block; object-fit: cover;
}
.hero-img-ph {
  display: none; aspect-ratio: 4 / 5; border-radius: 24px;
  background: linear-gradient(140deg, rgba(30,95,168,.12), rgba(46,158,91,.14));
  border: 2px dashed rgba(30,95,168,.3);
  place-items: center; align-content: center; gap: 10px; text-align: center;
  color: var(--blue); font-family: var(--head); font-weight: 600;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green-dark); font-weight: 600; font-size: .9rem;
  padding: 7px 16px; border-radius: 999px; border: 1px solid var(--line);
  box-shadow: var(--shadow); margin-bottom: 22px;
}
.hero h1 { margin-bottom: 18px; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-soft); max-width: 620px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-actions .btn-ghost { color: var(--blue-dark); border-color: var(--blue); background: #fff; }
.hero-actions .btn-ghost:hover { background: var(--blue); color: #fff; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 40px; }
.hero-trust li { color: var(--muted); font-size: .98rem; }
.hero-trust strong { display: block; font-family: var(--head); font-size: 1.6rem; font-weight: 800; color: var(--blue); line-height: 1.2; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.eyebrow { display: inline-block; font-family: var(--head); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-head { max-width: none; margin: 0 auto 54px; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 14px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 56px; align-items: stretch; }
.about-text { display: flex; flex-direction: column; }
.about-text p { color: var(--ink-soft); margin-top: 16px; }
.about-text h2 { margin-top: 4px; }
.about-points { margin-top: auto; padding-top: 26px; display: grid; gap: 12px; }
.point { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.check { display: inline-grid; place-items: center; min-width: 22px; height: 22px; border-radius: 50%; background: var(--bg-tint); color: var(--green-dark); font-size: .8rem; font-weight: 700; margin-top: 3px; }

.about-stats { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 1fr); gap: 16px; }
.stat-card {
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-card:nth-child(1) { border-color: rgba(30,95,168,.4); }
.stat-card:nth-child(2) { border-color: rgba(46,158,91,.45); }
.stat-card:nth-child(3) { border-color: rgba(245,130,31,.45); }
.stat-num { display: block; font-family: var(--head); font-size: 2rem; font-weight: 800; color: var(--blue); }
.stat-card:nth-child(2) .stat-num { color: var(--green); }
.stat-card:nth-child(3) .stat-num { color: var(--orange); }
.stat-label { color: var(--muted); font-size: .92rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--blue); opacity: .9; }
.service-card:nth-child(2)::before { background: var(--green); }
.service-card:nth-child(3)::before { background: var(--orange); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; }
.icon-blue   { background: rgba(30,95,168,.1);  color: var(--blue); }
.icon-green  { background: rgba(46,158,91,.12); color: var(--green-dark); }
.icon-orange { background: rgba(245,130,31,.12); color: var(--orange-dark); }

.service-card h3 { margin-bottom: 16px; }
.service-list { display: grid; gap: 11px; }
.service-list li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: .97rem; }
.service-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 8px;
  border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}
.service-note { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); color: var(--muted); font-size: .92rem; font-style: italic; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--blue-dark), var(--blue) 55%, var(--green-dark)); color: #fff; padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 8px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 22px; padding: 32px 0; }
.contact-heading { font-size: 1.3rem; margin-bottom: 16px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-ic { min-width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; }
.contact-item h3 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-item p { color: var(--ink-soft); }
.contact-item a { color: var(--blue); font-weight: 600; }
.contact-item a:hover { color: var(--orange); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }

/* WhatsApp button */
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.28); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,211,102,.36); }

/* Formular */
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.contact-form h3 { font-size: 1.3rem; }
.form-lead { color: var(--ink-soft); font-size: .96rem; margin: 6px 0 22px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: var(--head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea {
  font-family: var(--sans); font-size: .98rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-alt); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  width: 100%; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa7b8; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(30,95,168,.12);
}
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-submit:disabled { opacity: .65; cursor: progress; }
.form-status { font-size: .95rem; font-weight: 500; margin-top: 0; text-align: center; min-height: 0; }
.form-status.ok, .form-status.err { margin-top: 14px; }
.form-status.ok  { color: var(--green-dark); }
.form-status.err { color: #d8442f; }

.contact-map { margin-top: 28px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); min-height: 340px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* Buton WhatsApp flotant */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 30px rgba(37,211,102,.55); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,.78); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; padding: 60px 24px 40px; }
.footer-brand p { margin-top: 12px; font-size: .95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.72); font-size: .95rem; margin-bottom: 9px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: .88rem; color: rgba(255,255,255,.6); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .about-grid, .contact-grid, .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { max-width: 100%; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .contact-info { padding: 0; }
  .contact-actions { margin-top: 6px; }
}

@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed; top: var(--header-h); right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 24px 26px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .32s cubic-bezier(.4,0,.2,1);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav > a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 14px; justify-content: center; }
}

@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .hero { padding-top: calc(var(--header-h) + 48px); }
  .services-grid, .why-grid, .about-stats, .field-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 26px 20px; }
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .brand-logo { height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
