:root{
  --bg:#ffffff; /* Background alb curat */
  --card:#ffffff; /* Carduri albe pentru contrast curat */
  --text:#000000; /* Text negru puternic */
  --muted:#000000; /* TOT textul e 100% negru acum, fără griuri */
  
  /* NOUA TEMĂ: ROȘU SOLID ȘI ALBASTRU DESCHIS */
  --brand:#cc0000; /* Roșu pur, puternic și proeminent */
  --brand2:#03a9f4; /* Albastru deschis */
  --footer-bg:#2b4c7e; /* Albastru mai deschis pentru footer */
  
  /* LINII ȘI UMBRE DE CONTRAST PUTERNICE */
  --line:rgba(0,0,0,.18); 
  --shadow:0 16px 40px rgba(0,0,0,.35); 
  
  --radius:18px;
  --max:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(3,169,244,.08), transparent 55%),
    radial-gradient(900px 500px at 85% 10%, rgba(3,169,244,.05), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f4f7f9 40%, #ffffff 100%);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto}
.container{width:100%; max-width:var(--max); margin:0 auto; padding:0 18px}

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

/* Typography helpers */
h1{font-size:34px; line-height:1.12; margin:14px 0 10px}
h2{font-size:22px; margin:0 0 10px}
h3{font-size:16px; margin:0 0 8px}
.h1{font-size:34px; line-height:1.12; margin:14px 0 10px}
.h2{font-size:22px; margin:0 0 10px}
.h3{font-size:16px; margin:0 0 8px}
.p{margin:0; color:var(--muted); line-height:1.7; font-size:14px}
.lead{color:var(--muted); font-size:15.5px; line-height:1.7; margin:0 0 16px}
.sub{margin:6px 0 0; color:var(--muted); max-width:62ch; font-size:14px; line-height:1.6}
.sublead{margin:6px 0 0; color:var(--muted); max-width:70ch; font-size:14.5px; line-height:1.7}
.muted{color:var(--muted)}
.small{font-size:12.5px; color:#000000; line-height:1.6; margin:10px 0 0}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.95);
  border-bottom:1px solid var(--line);
  backdrop-filter:saturate(140%) blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:44px; height:44px; object-fit:contain; border-radius:12px; background:transparent; border:none; padding:0}
.brand span{font-weight:900; letter-spacing:.2px}
.brand .name{font-weight:900; letter-spacing:.2px}
.brand .tag{font-size:12px; color:var(--muted)}
.nav{display:flex; align-items:center; gap:10px}
.nav.mobile{display:none}
.nav a{
  padding:10px 12px;
  border-radius:999px;
  color:var(--text);
  font-weight:700;
  font-size:13px;
  border:1px solid transparent;
}
.nav a:hover{color:var(--brand); border-color:var(--line); background:rgba(3,169,244,.08)}
.nav a.active{color:var(--brand); border-color:var(--brand); background:rgba(3,169,244,.1)}

.actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#ffffff;
  color:var(--text);
  font-weight:800;
  font-size:13px;
  letter-spacing:.2px;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
.btn:hover{background:rgba(3,169,244,.08); box-shadow: 0 6px 15px rgba(0,0,0,.2);}
/* Butonul primary este ACUM ROȘU SOLID pentru a nu părea roz */
.btn.primary{border-color:var(--brand); background:var(--brand); color:#ffffff;}
.btn.primary:hover{background:#a30000; border-color:#a30000; box-shadow: 0 6px 15px rgba(204,0,0,.3);}

.burger{display:none; width:42px; height:42px; border-radius:12px; border:1px solid var(--line); background:#ffffff; color:var(--text); box-shadow: 0 4px 10px rgba(0,0,0,.1);}
.burger:active{transform:translateY(1px)}

.header [data-menu]{display:none}
.header [data-menu][data-open="true"]{display:block}
.header [data-menu] .nav.mobile{margin-top:8px}

/* Hero */
.hero{padding:44px 0 26px}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:24px; align-items:stretch}
.hero-grid > div{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
  padding:22px;
}
.hero-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-card .content{padding:22px}
.kicker{display:inline-flex; align-items:center; gap:8px; padding:7px 10px; border-radius:999px; border:1px solid var(--line); background:#ffffff; color:var(--text); font-weight:800; font-size:12px; box-shadow: 0 2px 8px rgba(0,0,0,.08);}
.cta-row,.hero-actions,.cta-actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.hero-badges,.badges{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.hero-figure{
  height:100%;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#ffffff;
}
.hero-figure img{width:100%; height:100%; object-fit:cover}

/* Hero splash (homepage) */
.hero-splash{
  position: relative;
  padding: 64px 18px 30px;
  max-width: var(--max);
  margin: 20px auto 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 48%, rgba(255,255,255,.6) 100%),
    radial-gradient(800px 420px at 20% 10%, rgba(3,169,244,.15), transparent 60%),
    url("../assets/img/banner.png") center/cover no-repeat;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-splash-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}
.hero-copy{padding:6px 0}
.hero-aside{padding:0; overflow:hidden}
.hero-aside .gallery img{height:150px}

/* Call-to-action band */
.cta{
  border:2px solid var(--brand); /* Bordură groasă și roșie pentru a fi proeminentă */
  background:rgba(3,169,244,.05); /* Fundal foarte ușor albăstrui */
  border-radius:var(--radius);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  box-shadow: var(--shadow);
}

/* Button variants */
.btn.secondary{border-color:var(--line); background:#ffffff}
.btn.ghost,.btn.btn-ghost{border-color:transparent; background:transparent; box-shadow:none;}
.btn.ghost:hover,.btn.btn-ghost:hover{border-color:var(--line); background:#ffffff; box-shadow: 0 4px 10px rgba(0,0,0,.1);}

/* Steps */
.steps{display:grid; gap:10px; margin:0; padding:0; list-style:none}
.step{display:flex; gap:10px; align-items:flex-start; padding:12px; border-radius:14px; border:1px solid var(--line); background:var(--card); box-shadow: 0 6px 15px rgba(0,0,0,.1);}
.step .dot{width:28px; height:28px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; font-weight:900; background:var(--brand); color:#ffffff;}

/* Media helpers */
.img{width:100%; height:auto; border-radius:14px; border:1px solid var(--line); box-shadow: 0 8px 20px rgba(0,0,0,.15);}
.spacer{height:12px}
.stat{display:flex; gap:10px; align-items:center; border:1px solid var(--line); background:var(--card); border-radius:14px; padding:12px; box-shadow: 0 6px 15px rgba(0,0,0,.1);}
.stat .num{font-weight:900}
.stat .cap{color:var(--text); font-weight:800; font-size:13px; line-height:1.4}

/* Sections */
.section{padding:26px 0}
.section-head{display:flex; justify-content:space-between; gap:16px; align-items:flex-end; margin-bottom:14px}
.section-head h2{margin:0; font-size:22px}
.section-head p{margin:0; color:var(--text); max-width:62ch; font-size:14px; line-height:1.6}

.grid{display:grid; gap:14px}
.grid.cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}
.grid.cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:18px;
}
.card-body{padding:18px}
.card.pad{padding:18px}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--text); line-height:1.7; font-size:14px}
.card ul{margin:12px 0 0; padding-left:18px; color:var(--text); line-height:1.8; font-size:14px}

.badge{font-size:12px; color:var(--text); font-weight:700; border:1px solid var(--line); background:#ffffff; padding:6px 10px; border-radius:999px; box-shadow: 0 2px 8px rgba(0,0,0,.08);}

.section-title{margin-bottom:14px}
.section-title .h2{margin:0}
.section-title .sub{margin-top:6px}

.list{margin:12px 0 0; padding-left:18px; color:var(--text); line-height:1.8; font-size:14px}
.bullets{margin:12px 0 0; padding-left:18px; color:var(--text); line-height:1.8; font-size:14px}

.pill{
  border:1px solid var(--line);
  background:#ffffff;
  border-radius:14px;
  padding:10px 12px;
  color:var(--text);
  font-weight:800;
  font-size:13px;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

.gallery{display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:10px}
.gallery img{width:100%; height:160px; object-fit:cover; border-radius:14px; border:1px solid var(--line); box-shadow: 0 6px 15px rgba(0,0,0,.15);}

.split{display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:stretch}
.media{min-height:240px}
.media img{width:100%; height:100%; object-fit:cover; box-shadow:var(--shadow); border-radius:var(--radius); border:1px solid var(--line);}

.callout{
  border:1px solid var(--brand2);
  background:rgba(3,169,244,.05);
  border-radius:var(--radius);
  padding:18px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  box-shadow:var(--shadow);
}

/* FAQ accordion + quick form */
.faq-layout{display:grid; grid-template-columns:1fr; gap:14px}
.accordion{display:grid; gap:10px}
.accordion details{border:1px solid var(--line); background:var(--card); border-radius:16px; padding:12px 14px; box-shadow: 0 6px 15px rgba(0,0,0,.1);}
.accordion summary{cursor:pointer; list-style:none; font-weight:900; color:var(--text); font-size:14px; display:flex; align-items:center; justify-content:space-between; gap:10px}
.accordion summary::-webkit-details-marker{display:none}
.accordion summary:after{content:"▾"; color:#000000; font-size:16px; line-height:1}
.accordion details[open] summary:after{content:"▴"}
.accordion .chev{display:none}
.accordion .acc-body{margin-top:10px; color:var(--text); font-size:14px; line-height:1.7}

.quick-form{display:grid; gap:10px}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.form-grid .full{grid-column:1 / -1}
.hint{font-size:12px; color:#000000; font-weight:500; line-height:1.5; margin-top:-2px}

.page-hero{
  margin-top:18px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 48%, rgba(255,255,255,.5) 100%),
    url("../assets/img/banner.png") center/cover no-repeat;
  box-shadow:var(--shadow);
}
.page-hero h1{margin:8px 0 10px}

/* Tables */
.table-wrap{overflow:auto; border-radius:var(--radius); border:1px solid var(--line); background:var(--card); box-shadow:var(--shadow);}
table{width:100%; border-collapse:collapse; min-width:720px}
th,td{padding:14px 14px; text-align:left; border-bottom:1px solid var(--line); font-size:14px}
th{color:var(--text); font-weight:900; background:rgba(3,169,244,.1)}
td{color:var(--text)}
tr:hover td{background:#f4f6f8}

.table{width:100%; border-collapse:collapse}
.table th,.table td{padding:14px 14px; text-align:left; border-bottom:1px solid var(--line); font-size:14px}
.table th{color:var(--text); font-weight:900; background:rgba(3,169,244,.1)}
.table td{color:var(--text)}

/* Forms */
form{display:grid; gap:10px}
label{font-size:13px; color:var(--text); font-weight:800}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#ffffff;
  color:var(--text);
  outline:none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.05);
}
textarea{min-height:120px; resize:vertical}
input::placeholder, textarea::placeholder{color:#000000; opacity: 0.65;}

.notice{padding:12px 14px; border-radius:14px; border:1px dashed rgba(0,0,0,.35); color:var(--text); font-size:13px; line-height:1.6; background: rgba(0,0,0,.02);}

/* Accessibility */
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:18px; top:18px; width:auto; height:auto; padding:10px 12px; border-radius:12px; background:#ffffff; border:1px solid var(--line); z-index:999; box-shadow:var(--shadow);}

/* Pre-FAQ block */
.pre-faq .pre-faq-card{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  padding:18px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.pre-faq .pre-faq-points{display:grid; gap:12px}
.pre-faq .point{display:grid; grid-template-columns: 28px 1fr; gap:10px; align-items:start}
.pre-faq .dot{
  width:28px; height:28px; border-radius:10px;
  display:grid; place-items:center;
  background: var(--brand);
  color: #ffffff;
  font-weight:900;
}
.pre-faq strong{display:block; margin-bottom:2px}
.pre-faq .small{margin:0}

/* Footer (Business) - ALBASTRU MAI DESCHIS */
.footer{margin-top:30px; border-top:none; background:var(--footer-bg); box-shadow: 0 -4px 20px rgba(0,0,0,.25); color: #ffffff;}
.footer-pro .footer-top{
  padding:26px 0 18px;
  display:grid;
  grid-template-columns: 1.25fr .9fr .7fr .95fr;
  gap:18px;
  align-items:start;
}
.footer-pro .footer-desc{color:rgba(255,255,255,.85); line-height:1.7; margin:0 0 14px}
.footer-pro h4{
  margin: 6px 0 12px;
  font-size: 13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: #ffffff;
}
.footer-pro .footer-list{display:grid; gap:8px; color:rgba(255,255,255,.85); line-height:1.6}
.footer-pro .footer-links{display:grid; gap:10px}
.footer-pro .footer-links a{
  display:inline-flex;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
  color:rgba(255,255,255,.95);
  font-weight:700;
  font-size:13px;
}
.footer-pro .footer-links a:hover{border-color:rgba(255,255,255,.2); background:rgba(255,255,255,.1); color:#ffffff; box-shadow:none;}
.footer-pro .footer-cta{display:flex; gap:10px; flex-wrap:wrap}
.footer-pro .btn{font-weight:800; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #ffffff;}
.footer-pro .btn:hover{background: rgba(255,255,255,.2);}

.footer-pro .footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  padding:14px 0 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  color: rgba(255,255,255,.7);
}
.footer-pro .footer-legal{display:flex; align-items:center; gap:10px}
.footer-pro .footer-legal a{color:rgba(255,255,255,.9); font-weight:800}
.footer-pro .footer-legal a:hover{color:#ffffff}
.footer-pro .sep{opacity:.4}

/* Responsive footer */
@media (max-width: 920px){
  .pre-faq .pre-faq-card{grid-template-columns:1fr}
  .footer-pro .footer-top{grid-template-columns:1fr 1fr; }
}
@media (max-width: 560px){
  .footer-pro .footer-top{grid-template-columns:1fr;}
  .footer-pro .footer-bottom{flex-direction:column; align-items:flex-start}
}

/* Responsive */
@media (max-width: 920px){
  .hero-splash-inner{grid-template-columns:1fr;}
  .faq-layout{display:grid; grid-template-columns:1fr; gap:14px}
  .hero-grid{grid-template-columns:1fr;}
  .hero-splash-inner{grid-template-columns:1fr;}
  .hero-figure{min-height:240px}
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .faq-layout{display:grid; grid-template-columns:1fr; gap:14px}
  .form-grid{grid-template-columns:1fr}
  .nav{display:none}
  .burger{display:inline-flex; align-items:center; justify-content:center}
  .burger{margin-left:auto; flex:0 0 auto}
  .actions .btn[href^="mailto"]{display:none}
  .actions .btn.primary{display:none}

  .nav.mobile{
    display:flex; flex-direction:column; align-items:stretch;
    gap:6px;
    padding:10px 0 14px;
  }
  .nav.mobile a{border-radius:14px}
}

/* Homepage intro text */
.home-intro-text{
  max-width: 100%;
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
}

/* Logo mark + brand */
.brand{display:flex; align-items:center; gap:10px}
.brand .logo-mark{width:160px; height:40px; display:block}
.brand span{display:none}

/* Homepage intro (business) */
.home-intro .kicker{opacity:.9}
.home-intro-lines p{margin:0 0 12px; color:#000000; line-height:1.85; font-size:15px}
.home-intro-lines p:last-child{margin-bottom:0}

/* Terms page */
.terms-content{max-width: 920px}
.terms-content ul{margin:8px 0 14px 18px; color:#000000; line-height:1.85}
.terms-content li{margin:6px 0}

/* Footer centered bottom */
.footer-center{
  justify-content: center;
  text-align: center;
}

/* Force footer copyright center */
.footer-bottom.footer-center{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
}
.footer-bottom.footer-center .footer-copy{
  width:100%;
  text-align:center;
}