/* ==== TEMA WAXEASY (Teal/Purple - Friendly & Modern) ==== */

:root {
  --bg-main: #f0fdfa;        /* teal-50 */
  --bg-alt: #ccfbf1;         /* teal-100 */
  --bg-card: #ffffff;
  
  /* Culoare principală: TEAL (proaspăt, modern) */
  --primary: #0d9488;        /* teal-600 */
  --primary-soft: #14b8a6;   /* teal-500 */
  --primary-dark: #0f766e;   /* teal-700 */

  /* Accent: PURPLE (pentru contrast creativ) */
  --accent: #9333ea;         /* purple-600 */
  --accent-light: #f3e8ff;   /* purple-100 */
  
  --text-main: #134e4a;      /* teal-900 (dark text with hint of color) */
  --text-muted: #475569;     /* slate-600 */
  --border-soft: #e2e8f0;
}

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

body {
  margin: 0;
  /* Font "Poppins" look-alike via system stack or sans-serif */
  font-family: "Poppins", "Inter", system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a:hover {
  color: var(--accent);
}

/* Layout */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.section {
  padding: 4rem 1.5rem;
}
.section.alt {
  background: #f8fafc;
  border-radius: 3rem 3rem 0 0; /* Forme organice/rotunjite */
  margin-top: -2rem;
  padding-top: 5rem;
}

.section-inner, .nav-inner, .top-bar-inner, .footer-inner, .cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header & Nav */
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.4rem 0;
  text-align: center;
}
.top-bar-inner {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.badge-google {
  background: rgba(255,255,255,0.2);
  padding: 0.1rem 0.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.7rem;
}

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

/* Logo Clickabil & Modern */
.brand a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit; /* Păstrează culoarea textului */
  text-decoration: none !important;
}
.brand-logo-wrap {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, #2dd4bf 100%);
  border-radius: 50%; /* Complet rotund */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand a:hover .brand-logo-wrap {
  transform: rotate(15deg) scale(1.1);
}
.brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
}
.brand-sub {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--text-muted);
}
.nav-links a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1e293b;
}
.hero h1 span {
  color: var(--primary);
  position: relative;
  white-space: nowrap;
}
/* Subliniere ondulată sub text */
.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q25 20 50 10 T100 10' fill='none' stroke='%2314b8a6' stroke-width='4'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.4;
  z-index: -1;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

/* Butoane Rotunjite */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px; /* Pill shape */
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.25);
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(13, 148, 136, 0.4);
  color: #fff;
}
.btn-ghost {
  background: #fff;
  color: var(--text-main);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0fdfa;
}

/* Carduri Prietenoase */
.grid {
  display: grid;
  gap: 2rem;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: #fff;
  border-radius: 1.5rem; /* Foarte rotunjit */
  padding: 2rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.1);
  border-color: var(--primary-soft);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}
.card-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1rem 0;
}
.card-price span {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}
.card-chip {
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-list {
  list-style: none;
  padding: 0;
  color: var(--text-muted);
}
.card-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* Emoji check */
.card-list li::before {
  content: "✨";
  font-size: 0.8rem;
}

/* Sectiune Domenii Speciala */
.domain-check {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}
.domain-check h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.domain-input-fake {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 2rem auto 0;
}
.domain-text {
  color: #94a3b8;
  margin-left: 1rem;
}

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 4rem 1.5rem;
  font-size: 0.9rem;
}
.footer-title {
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { justify-content: center; }
  .nav-inner { flex-direction: column; gap: 1rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .domain-input-fake { flex-direction: column; gap: 1rem; padding: 1.5rem; border-radius: 20px;}
}