body {
  background: #f7f5f2;
}

/* =====================================================
   GLOBAL ABOUT STYLES
===================================================== */

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  display: inline-block;
}

.gradient-line {
  width: 90px;
  height: 3px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );

  margin: 28px 0;
}
/* =====================================================
   ABOUT HERO
===================================================== */

.about-hero {
  padding: 90px 0;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 1;
  margin: 20px 0;
}

.about-hero-text p {
  color: #555;
  line-height: 1.8;
  max-width: 520px;
}

.about-hero-image img {
  width: 100%;
  border-radius: 24px;
}

/* =====================================================
   STORY SECTION
===================================================== */

.story-section {
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text {
  padding: 80px;
}

.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  line-height: 1.1;
  margin: 20px 0;
}

.story-text p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* =====================================================
   VALUES SECTION
===================================================== */

.values {
  padding: 40px 0 10px;
}
.section-heading.center {
  text-align: center;
}

.section-heading.center .gradient-line {
  margin: 20px auto 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  margin-top: 40px;
}

.value-card {
  text-align: center;

  padding: 10px 40px 25px;

  border-right: 1px solid rgba(0,0,0,0.08);
}

.value-card:last-child {
  border-right: none;
}

.value-card svg {
  width: 64px;
  height: 64px;

  stroke: url(#iconGradient);
  fill: none;
  stroke-width: 1.8;

  margin-bottom: 24px;
}

.value-card h3 {
  margin-bottom: 14px;
}

.value-card p {
  color: #666;
  line-height: 1.8;
}

/* =====================================================
   STATS SECTION
===================================================== */

.stats {
  padding-bottom: 50px;
}

.stats-grid {
  background:
    radial-gradient(circle at left, rgba(142,108,255,0.25), transparent 35%),
    radial-gradient(circle at right, rgba(255,78,141,0.25), transparent 35%),
    #050505;

  border-radius: 24px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  padding: 45px 20px;
}

.stat-item {
  color: white;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
}

.stat-item:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  transform: translateY(-50%);

  width: 1px;
  height: 90px;

  background: rgba(255,255,255,0.12);
}

.stat-item svg {
  width: 52px;
  height: 52px;

  stroke: url(#iconGradient);
  fill: none;
  stroke-width: 1.8;

  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;

  text-align: left;
}

.stat-content h3,
.stat-content p {
  margin: 0;
}

.stat-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1;

  margin-bottom: 6px;
}

.stat-item p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
}

/* =====================================================
   SUBSCRIBE SECTION
===================================================== */

.subscribe-section {
  padding: 2px 0 20px;
}

.subscribe-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.subscribe-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.subscribe-icon {
  width: 84px;
  height: 84px;

  border-radius: 50%;
  background: rgba(255,255,255,0.7);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.subscribe-icon svg {
  width: 42px;
  height: 42px;

  stroke: url(#iconGradient);
  fill: none;
  stroke-width: 1.8;
}

.subscribe-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  margin-bottom: 12px;
}

.subscribe-text p {
  color: #666;
  line-height: 1.9;
  max-width: 320px;
}

.subscribe-form {
  display: flex;
  align-items: center;

  background: white;
  border-radius: 16px;

  overflow: hidden;

  height: 72px;
}

.subscribe-form input {
  flex: 1;

  height: 100%;

  border: none;
  outline: none;

  padding: 0 28px;

  font-size: 16px;

  background: transparent;
}

.subscribe-form button {
  border: none;
  height: 100%;

  padding: 0 48px;

  color: white;
  font-weight: 600;
  font-size: 15px;

  cursor: pointer;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );
}
/* =====================================================
   FOOTER SOCIAL FIX
===================================================== */

.footer-socials {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 18px;
}

.footer-socials a {
  display: inline-flex !important;
}

.footer-socials img {
  width: 22px !important;
  height: 22px !important;

  object-fit: contain !important;

  display: block;
}