﻿/* ===========================
   SERENOVA SPA - STYLESHEET
   =========================== */

:root {
  --purple: #7b3fa0;
  --purple-dark: #5c2d78;
  --purple-light: #9b5fc0;
  --purple-pale: #f5eeff;
  --gold: #c9a96e;
  --white: #ffffff;
  --off-white: #faf8fc;
  --text: #2d2d2d;
  --text-muted: #888;
  --border: #e8dff3;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", sans-serif;
  --shadow-soft: 0 8px 32px rgba(123, 63, 160, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.09);
  --radius: 12px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* TOPBAR */
.topbar {
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  padding: 0.4rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  letter-spacing: 0.04em;
}
.topbar i {
  margin-right: 0.4rem;
  color: var(--gold);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  box-shadow: 0 2px 16px rgba(123, 63, 160, 0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 0.7rem 3rem;
  box-shadow: 0 4px 24px rgba(123, 63, 160, 0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
}

.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--purple-dark) !important;
}
.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--purple);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--purple-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.mobile-menu a {
  font-size: 1.3rem;
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 63, 160, 0.3);
}
.btn-primary.small {
  padding: 0.6rem 1.3rem;
  font-size: 0.78rem;
}
.btn-primary.full-width {
  width: 100%;
  text-align: center;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--purple);
  color: var(--purple);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
}

/* SECTIONS */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}
.section-tag.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  color: var(--text);
}
.section-title.light {
  color: var(--white);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0.5rem auto 3rem;
  line-height: 1.7;
}
.section-sub.light {
  color: rgba(255, 255, 255, 0.75);
}

.divider-ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1rem;
  margin: 0.5rem 0;
  display: block;
}
.divider-ornament.light {
  color: rgba(255, 255, 255, 0.5);
}

/* HERO */
.hero {
  min-height: 92vh;
  background: linear-gradient(
    135deg,
    var(--purple-pale) 0%,
    #ede4f8 60%,
    var(--white) 100%
  );
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 3rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(123, 63, 160, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--purple);
  font-weight: 600;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.hf-item {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hf-item i {
  color: var(--purple);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-img-wrap {
  position: relative;
  width: 420px;
  height: 520px;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 200px 200px 12px 12px;
  box-shadow: var(--shadow-soft);
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  border-left: 4px solid var(--gold);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--purple);
  line-height: 1;
}
.badge-txt {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* WELCOME */
.welcome {
  background: var(--white);
}
.categories {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cat-card {
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.cat-card:hover {
  transform: translateY(-6px);
}
.cat-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 1rem;
  border: 4px solid var(--purple-pale);
  box-shadow: 0 4px 20px rgba(123, 63, 160, 0.15);
  transition: var(--transition);
}
.cat-card:hover .cat-img {
  border-color: var(--purple);
}
.cat-card p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
}

/* PRODUCTS */
.products {
  background: linear-gradient(
    135deg,
    var(--purple-dark) 0%,
    var(--purple) 100%
  );
  position: relative;
  overflow: hidden;
}
.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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.03'%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");
}
.products .container {
  position: relative;
  z-index: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.product-card.featured {
  border: 2px solid var(--gold);
}

.ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  z-index: 1;
}

.product-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.product-info {
  padding: 1rem;
  text-align: center;
}
.price-old {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
}
.price-new {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--purple);
  font-weight: 600;
  display: block;
  margin: 0.1rem 0;
}
.product-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.btn-add {
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-add:hover {
  background: var(--purple-dark);
}

/* SPECIALTIES */
.specialties {
  background: var(--off-white);
}
.spec-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.spec-text {
  flex: 1;
}
.spec-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1rem;
}
.spec-text h3 em {
  font-style: italic;
  color: var(--purple);
}
.spec-text > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.spec-list {
  margin-bottom: 2rem;
}
.spec-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.spec-list i {
  color: var(--purple);
  font-size: 0.75rem;
}

.spec-image {
  flex: 0 0 360px;
  position: relative;
}
.spec-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.spec-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--purple);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

/* STATS */
.stats {
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-dark) 100%
  );
  padding: 4rem 0;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 2rem;
}
.stat-item {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
}

/* TEAM */
.team {
  background: var(--white);
}
.team-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.team-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 0 0 300px;
  transition: var(--transition);
  border: 2px solid transparent;
}
.team-card:hover,
.team-card.featured-card {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.team-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--purple-pale);
  margin: 0 auto 1.2rem;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.team-card:hover .team-img-wrap,
.team-card.featured-card .team-img-wrap {
  border-color: var(--purple);
}
.team-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.78rem;
  color: var(--purple);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.team-email {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.team-email i {
  color: var(--purple);
  margin-right: 0.4rem;
}

.team-socials {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}
.team-socials a {
  width: 32px;
  height: 32px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--purple);
  transition: var(--transition);
}
.team-socials a:hover {
  background: var(--purple);
  color: var(--white);
}

/* BLOG */
.blog {
  background: linear-gradient(135deg, var(--purple-dark) 0%, #6a2090 100%);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
}

.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--purple);
  color: var(--white);
  font-size: 0.7rem;
  text-align: center;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-date span {
  font-size: 1.1rem;
  display: block;
}

.blog-body {
  padding: 1.5rem;
}
.blog-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.blog-tags span {
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
}

.blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.blog-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-link {
  font-size: 0.8rem;
  color: var(--purple);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.blog-link:hover {
  gap: 0.7rem;
}

/* PRICING */
.pricing {
  background: var(--off-white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.price-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-4px);
}
.price-card.popular {
  border-color: var(--purple);
  background: linear-gradient(135deg, var(--white) 0%, var(--purple-pale) 100%);
  transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(123, 63, 160, 0.2);
}
.price-card.popular:hover {
  transform: scale(1.04) translateY(-4px);
}

.pop-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.price-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 600;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.price-amount sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 0.5rem;
}
.price-amount sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-features {
  margin-bottom: 1.5rem;
  text-align: left;
}
.price-features li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-features li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 700;
  font-size: 0.7rem;
}

.btn-price {
  display: block;
  background: var(--purple);
  color: var(--white);
  border-radius: 30px;
  padding: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  text-align: center;
}
.btn-price:hover {
  background: var(--purple-dark);
}

/* CONTACT */
.contact-section {
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-dark) 100%
  );
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-title {
  text-align: left;
}
.contact-info .section-tag {
  text-align: left;
}
.contact-info .divider-ornament {
  text-align: left;
}
.contact-info .section-sub {
  text-align: left;
  margin: 0.5rem 0 2rem;
}

.c-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}
.c-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--off-white);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
}
.contact-form textarea {
  resize: vertical;
}

.form-success {
  display: none;
  background: #e8f8f0;
  color: #2d7a4f;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}
.form-success.show {
  display: block;
}

/* FOOTER */
.footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}
.footer-about {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-app {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.app-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.app-btn:hover {
  background: var(--purple);
}
.app-btn i {
  font-size: 1rem;
}

.footer-col h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.fg-img {
  height: 70px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  transition: var(--transition);
  opacity: 0.8;
}
.fg-img:hover {
  opacity: 1;
  transform: scale(1.04);
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--purple);
  color: var(--white);
}

.footer-newsletter {
  display: flex;
  gap: 0;
}
.footer-newsletter input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px 0 0 6px;
  color: var(--white);
  font-size: 0.82rem;
  font-family: var(--font-body);
}
.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-newsletter input:focus {
  outline: none;
  border-color: var(--purple-light);
}
.footer-newsletter button {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-newsletter button:hover {
  background: var(--purple-dark);
}

.promo-box {
  background: linear-gradient(
    135deg,
    var(--purple-dark) 0%,
    var(--purple) 100%
  );
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.promo-pct {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.promo-text {
  font-size: 1rem;
  color: var(--white);
  margin: 0.3rem 0;
  font-weight: 500;
}
.promo-code {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2rem;
}
.promo-code strong {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* SCROLL TOP */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(123, 63, 160, 0.4);
  z-index: 100;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card.popular {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spec-layout {
    flex-direction: column;
  }
  .spec-image {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
  .hero {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
    min-height: auto;
  }
  .hero-features {
    text-align: left;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-img-wrap {
    width: 300px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .topbar {
    justify-content: center;
    gap: 1rem;
    font-size: 0.72rem;
  }
  .categories {
    gap: 1.2rem;
  }
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
  .stats-inner {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
}
