:root {
  --bg: #04060f;
  --bg2: #080d1c;
  --bg3: #0c1225;
  --card: #0e1530;
  --border: #1a2545;
  --cyan: #00e5ff;
  --cyan2: #00b8d9;
  --lime: #a8ff3e;
  --text: #e8edf8;
  --muted: #7a8aaa;
  --accent: #ff4d6d;
  --gold: #ffc947;
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ BACKGROUND ══ */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.18) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
}
.bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.12) 0%,
    transparent 70%
  );
  bottom: 100px;
  right: -100px;
}
.bg-glow-3 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.09) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main {
  position: relative;
  z-index: 1;
}

/* ══ HERO ══ */
.hero {
  padding: 130px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
}
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-breadcrumb a:hover {
  color: var(--cyan);
}
.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}
.hero-breadcrumb .current {
  color: rgba(255, 255, 255, 0.6);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.75rem;
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan2);
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease both;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.6s ease infinite;
}
.hero h1 {
  font-family: "Poiret One", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  animation: fadeDown 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeDown 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeDown 0.6s 0.3s ease both;
}
.btn-hero-primary {
  padding: 14px 28px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 229, 255, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  border-radius: inherit;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 229, 255, 0.55);
}
.btn-hero-outline {
  padding: 14px 28px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.25s;
}
.btn-hero-outline:hover {
  background: rgba(26, 37, 69, 0.8);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

/* Hero visual */
.hero-visual {
  animation: fadeUp 0.7s 0.2s ease both;
}
.server-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.server-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--cyan2),
    var(--cyan),
    var(--cyan2)
  );
}
.panel-title {
  font-family: "Poiret One", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
  animation: pulse 2s ease infinite;
}
.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.panel-tag {
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  font-size: 0.75rem;
  color: var(--cyan2);
  font-weight: 500;
}

/* ══ TRUST BAR ══ */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  padding: 0 24px 70px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.7;
}

/* ══ SECTION GENERIC ══ */
.section {
  padding: 80px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══ BLOG GRID ══ */
.blog-container {
  max-width: 1100px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border-color: rgba(0, 229, 255, 0.25);
}
.blog-card.featured {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .blog-card.featured {
    grid-column: span 1;
  }
}

.blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(4, 6, 15, 0.6) 100%
  );
}
.blog-thumb-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag-hosting {
  background: rgba(0, 229, 255, 0.9);
  color: var(--text);
}
.tag-seguridad {
  background: rgba(74, 100, 222, 0.9);
  color: var(--text);
}
.tag-dominios {
  background: rgba(16, 185, 129, 0.9);
  color: var(--text);
}
.tag-optimizacion {
  background: rgba(245, 158, 11, 0.9);
  color: var(--text);
}
.tag-emprendimiento {
  background: rgba(168, 85, 247, 0.9);
  color: var(--text);
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--muted);
}
.blog-meta .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}
.blog-card h3 {
  font-family: "Poiret One", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text);
}
.blog-card.featured h3 {
  font-size: 1.15rem;
}
.blog-excerpt {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  transition: gap 0.2s;
  margin-top: auto;
}
.btn-read-more:hover {
  gap: 10px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poiret One", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover,
.page-btn.active {
  color: var(--text);
  background: rgba(0, 229, 255, 0.15);
  border-color: rgba(0, 229, 255, 0.35);
}
.page-btn.active {
  color: var(--cyan);
}
.page-arrow {
  padding: 0 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.page-arrow:hover {
  color: var(--cyan);
}

/* ══ CATEGORIES ══ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.cat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition:
    border-color 0.25s,
    transform 0.25s,
    background 0.25s;
}
.cat-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.05);
  transform: translateY(-4px);
}
.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
}
.cat-name {
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.cat-count {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ══ EDUCATIONAL SECTION ══ */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.edu-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 18px;
  padding: 28px 24px;
  transition:
    border-color 0.25s,
    transform 0.25s,
    background 0.25s;
  position: relative;
  overflow: hidden;
}
.edu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.edu-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.04);
  transform: translateY(-5px);
}
.edu-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
}
.edu-card h3 {
  font-family: "Poiret One", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.edu-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══ GROWTH SECTION ══ */
.growth-section {
  padding: 60px 24px;
}
.growth-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .growth-inner {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 32px;
  }
}
.growth-eyebrow {
  display: inline-block;
  font-family: "Poiret One", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.growth-inner h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.growth-inner p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}
.growth-topics {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.growth-topic {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}
.growth-topic .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.growth-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.growth-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.growth-stat:hover {
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.04);
}
.growth-stat-num {
  font-family: "Poiret One", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
}
.growth-stat-label {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ══ NEWSLETTER ══ */
.newsletter-section {
  padding: 80px 24px;
}
.newsletter-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.08),
    rgba(0, 229, 255, 0.03)
  );
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.newsletter-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.newsletter-wrap h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
}
.newsletter-wrap p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 16px;
  position: relative;
}
@media (max-width: 500px) {
  .newsletter-form {
    flex-direction: column;
  }
}
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder {
  color: var(--muted);
}
.newsletter-input:focus {
  border-color: rgba(0, 229, 255, 0.5);
}
.btn-subscribe {
  padding: 14px 24px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-subscribe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  border-radius: inherit;
}
.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 229, 255, 0.5);
}
.newsletter-privacy {
  font-size: 0.75rem;
  color: var(--muted);
  position: relative;
}
.newsletter-privacy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.newsletter-privacy a:hover {
  color: var(--cyan2);
}

/* ══ CTA BOTTOM ══ */
.cta-wrap {
  padding: 40px 24px 80px;
}
.cta-bottom {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a2545 0%, var(--cyan2) 50%, #3a6ea5 100%);
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-bottom h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
}
.cta-bottom p {
  font-size: 1rem;
  opacity: 0.88;
  margin-bottom: 36px;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-dark {
  display: inline-block;
  padding: 15px 36px;
  background: var(--bg);
  color: var(--text);
  border-radius: 14px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-dark:hover {
  background: #000d6b;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.btn-white {
  display: inline-block;
  padding: 15px 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--text);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .cta-bottom {
    padding: 46px 24px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .btn-hero-primary,
  .btn-hero-outline {
    text-align: center;
  }
  .newsletter-wrap {
    padding: 40px 24px;
  }
}