/* Fat to Glam - Fashion Transformation & Styling */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --magenta: #d4145a;
  --magenta-dark: #a8103f;
  --purple: #6b21a8;
  --purple-light: #f3e8ff;
  --coral: #ff6b6b;
  --gold: #f59e0b;
  --peach: #fff5f5;
  --text: #1a1a2e;
  --text-muted: #4a4a6a;
  --white: #ffffff;
  --grey-light: #f8f7fc;
  --border: #e8e5f0;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: var(--white);
  padding: 14px 0;
  border-bottom: 3px solid var(--magenta);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo svg {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--magenta);
}

/* Hero */
.hero {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--purple) 50%, #4c1d95 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero p {
  font-size: 19px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--magenta);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 20px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 20, 90, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--magenta);
  box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

/* Sections */
section {
  padding: 70px 0;
}

section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

section p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.section-alt {
  background: var(--grey-light);
}

.section-pink {
  background: var(--peach);
}

.text-center {
  text-align: center;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 15px;
}

.card-tag {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Feature image */
.feature-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
}

/* Pricing cards */
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  border-color: var(--magenta);
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: var(--magenta);
  position: relative;
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

.price-card .price {
  font-size: 36px;
  font-weight: 800;
  color: var(--magenta);
  margin: 12px 0;
}

.price-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.price-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--magenta);
  font-weight: 700;
}

/* Testimonial */
.testimonial {
  background: var(--purple-light);
  border-radius: 16px;
  padding: 32px;
  margin: 24px 0;
  border-left: 4px solid var(--purple);
}

.testimonial p {
  font-style: italic;
  font-size: 17px;
  color: var(--text);
}

.testimonial cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 600;
}

/* Article */
.article-header {
  padding: 70px 0 50px;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  color: var(--white);
  text-align: center;
}

.article-header h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.article-header p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 50px 24px;
}

.article-body h2 {
  margin-top: 40px;
  font-size: 26px;
}

.article-body p {
  font-size: 17px;
  line-height: 1.8;
}

.article-body img {
  width: 100%;
  border-radius: 12px;
  margin: 28px 0;
}

.article-body blockquote {
  background: var(--purple-light);
  border-left: 4px solid var(--magenta);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
}

.article-body blockquote p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 0;
}

/* Footer */
footer {
  background: var(--text);
  color: var(--white);
  padding: 48px 0 32px;
}

footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

footer h4 {
  color: var(--coral);
  font-size: 16px;
  margin-bottom: 12px;
}

footer p, footer a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  line-height: 2;
}

footer a:hover {
  color: var(--coral);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 30px; }
  .hero { padding: 60px 0 50px; }
  .grid-2 { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr; gap: 24px; }
  .article-header h1 { font-size: 28px; }
  section h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 16px; }
  section { padding: 50px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  header .container { flex-direction: column; text-align: center; }
  nav { gap: 16px; }
}
