/* Design-stage homepage overrides */

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

#sticky-header.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box;
  z-index: 1050 !important;
  display: flex !important;
  align-items: center !important;
  min-height: 80px;
  height: 80px;
  padding: 0 !important;
  background: #121211 !important;
  border-bottom: 1px solid rgba(143, 230, 185, 0.18) !important;
  box-shadow: none !important;
  transition:
    background 0.25s ease,
    backdrop-filter 0.25s ease,
    -webkit-backdrop-filter 0.25s ease,
    border-color 0.25s ease;
}

#sticky-header.header.is-scrolled {
  background: rgba(18, 18, 17, 0.88) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(143, 230, 185, 0.14) !important;
}

/* Match hero Bootstrap .container width + horizontal padding */
#sticky-header .pe-header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

#sticky-header .pe-header-row {
  width: 100%;
  height: 100%;
  margin: 0;
  align-items: center;
}

#sticky-header .pe-header-left,
#sticky-header .pe-header-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

#sticky-header .pe-header-right {
  margin-left: auto;
  justify-content: flex-end;
}

#sticky-header .contact-btn-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

/* Header logo: mint mark + white wordmark */
#sticky-header .brand-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

#sticky-header .brand-logo img {
  filter: none;
  max-width: 170px;
  width: auto;
  height: auto;
  max-height: 37px;
  object-fit: contain;
}

.footer a img[src*="logo"] {
  max-width: 168px;
  height: auto;
}

.edavetiye-page .ed-footer-compact a img {
  max-width: 168px;
}

/* E-Davetiye header CTA */
#sticky-header .contact-btn.design-stage-edavetiye,
#sticky-header .contact-btn.design-stage-edavetiye.btn-primary {
  display: inline-flex !important;
  align-items: center;
  background-color: #99e5b7 !important;
  border-color: #99e5b7 !important;
  color: #0a0a0a !important;
  box-shadow: none !important;
  transform: translateY(0);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.35s ease;
}

#sticky-header .contact-btn.design-stage-edavetiye:hover,
#sticky-header .contact-btn.design-stage-edavetiye.btn-primary:hover {
  background-color: #7fd4a3 !important;
  border-color: #7fd4a3 !important;
  color: #0a0a0a !important;
  transform: translateY(-2px);
  box-shadow: none !important;
}

#sticky-header .contact-btn.design-stage-edavetiye .contact-btn-icon {
  color: inherit;
}

@media only screen and (max-width: 767px) {
  #sticky-header.header {
    min-height: 66px;
    height: 66px;
  }

  #sticky-header .brand-logo img {
    max-width: 142px;
    max-height: 30px;
  }
}

@media only screen and (min-width: 1920px) {
  .main-nav {
    margin-right: 0 !important;
  }
}

/* Temporary: hide main nav + hamburger during design stage */
.design-stage-hide-nav,
.design-stage-hide-burger,
.design-stage-hide-sections,
.design-stage-hide-footer-links {
  display: none !important;
}

/* Soft mint shimmer on primary buttons */
body.pe-landing .btn-primary,
body.edavetiye-page .btn-primary,
#sticky-header .contact-btn.design-stage-edavetiye {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.pe-landing .btn-primary::after,
body.edavetiye-page .btn-primary::after,
#sticky-header .contact-btn.design-stage-edavetiye::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 72%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 0;
}

body.pe-landing .btn-primary:hover::after,
body.edavetiye-page .btn-primary:hover::after,
#sticky-header .contact-btn.design-stage-edavetiye:hover::after {
  transform: translateX(120%);
}

body.pe-landing .btn-primary:hover,
body.edavetiye-page .btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(143, 230, 185, 0.2), 0 10px 28px rgba(143, 230, 185, 0.16) !important;
}

body.pe-landing .btn-primary > *,
body.edavetiye-page .btn-primary > *,
#sticky-header .contact-btn.design-stage-edavetiye > * {
  position: relative;
  z-index: 1;
}

/* Hide template vertical grid lines */
.line-pattern-light,
.line-pattern-dark {
  display: none !important;
}

/* ========== Premium homepage ========== */
body.pe-landing {
  background: #12110f;
  color: #ffffff;
}

.pe-home {
  overflow: hidden;
}

.pe-eyebrow {
  display: inline-block;
  margin-bottom: 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #99e5b7;
}

.pe-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 5rem;
}

.pe-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.pe-hero-photo {
  position: absolute;
  inset: -12px;
  background: url("/assets/images/hero/venue-bg.png") center / cover no-repeat;
  filter: blur(1.6px) saturate(1.05) brightness(0.88);
  transform: scale(1.04);
}

.pe-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.88) 0%,
    rgba(8, 8, 8, 0.68) 48%,
    rgba(8, 8, 8, 0.5) 100%
  );
}

.pe-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(20, 16, 12, 0.42) 100%),
    linear-gradient(180deg, rgba(18, 16, 14, 0.12) 0%, transparent 28%, rgba(12, 10, 8, 0.28) 100%);
  pointer-events: none;
}

.pe-hero-mint-glow {
  position: absolute;
  top: -18%;
  right: -8%;
  width: min(78vw, 820px);
  height: min(78vw, 820px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(143, 230, 185, 0.16) 0%,
    rgba(143, 230, 185, 0.06) 38%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(8px);
  animation: pe-glow-breathe 10s ease-in-out infinite;
}

.pe-hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.pe-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(143, 230, 185, 0.55);
  box-shadow: 0 0 4px rgba(143, 230, 185, 0.14);
  animation-name: pe-particle-drift;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}

.pe-hero-cursor-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    circle 280px at var(--mx, 65%) var(--my, 40%),
    rgba(143, 230, 185, 0.11) 0%,
    rgba(143, 230, 185, 0.04) 35%,
    transparent 68%
  );
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

@keyframes pe-glow-breathe {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes pe-particle-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -28px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pe-hero-mint-glow,
  .pe-particle {
    animation: none !important;
  }

  .pe-hero-cursor-light {
    display: none;
  }
}

.pe-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pe-hero-title {
  margin: 0 0 1.25rem;
  max-width: 14ch;
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(2.4rem, 6.2vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: #fff;
}

.pe-hero-lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.pe-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.pe-btn-ghost {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pe-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(153, 229, 183, 0.45) !important;
  color: #fff !important;
}

.pe-float-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  max-width: 320px;
  margin-left: auto;
}

.pe-glass-card {
  padding: 1.15rem 1.35rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(35, 33, 31, 0.78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  font-family: Outfit, Manrope, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  animation: pe-float 5.5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.pe-glass-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(143, 230, 185, 0.55);
  background: rgba(42, 40, 36, 0.88);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(143, 230, 185, 0.12),
    0 0 28px rgba(143, 230, 185, 0.12);
}

.pe-glass-card--offset {
  margin-left: 1.75rem;
}

.pe-glass-card--offset-2 {
  margin-left: 0.65rem;
}

@keyframes pe-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.pe-stats {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding-bottom: 4rem;
}

.pe-stats::before,
.pe-vision::before,
.pe-preview::before,
.pe-cta::before,
.pe-contact::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(720px, 72%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(143, 230, 185, 0.28) 50%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0.85;
}

.pe-vision,
.pe-preview,
.pe-cta,
.pe-contact {
  position: relative;
}

.pe-stats-panel {
  padding: 1.75rem 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(35, 33, 31, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.pe-stat {
  text-align: center;
  padding: 0.75rem 1rem;
}

.pe-stat--mid {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .pe-stat--mid {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.pe-stat-num {
  display: block;
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #99e5b7;
}

.pe-stat-label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
}

.pe-vision,
.pe-preview {
  padding: 5.5rem 0;
}

.pe-section-title {
  margin: 0 0 1.15rem;
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
}

.pe-section-lead {
  margin: 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}

.pe-vision-visual {
  position: relative;
  min-height: 360px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pe-vision-photo {
  position: absolute;
  inset: 0;
  background: url("/assets/images/hero/venue-bg.png") center / cover no-repeat;
  filter: brightness(0.55) saturate(0.9);
  transition: transform 0.6s ease;
}

.pe-vision-visual:hover .pe-vision-photo {
  transform: scale(1.04);
}

.pe-vision-glass {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.pe-vision-visual:hover .pe-vision-glass {
  border-color: rgba(143, 230, 185, 0.45);
  box-shadow:
    0 0 0 1px rgba(143, 230, 185, 0.08),
    0 0 24px rgba(143, 230, 185, 0.1);
}

.pe-vision-glass-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #99e5b7;
}

.pe-vision-glass-text {
  font-family: Outfit, Manrope, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.pe-preview {
  background: #151311;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pe-home-preview {
  margin: 0 auto;
}

.pe-cta {
  padding: 5rem 0 4rem;
}

.pe-cta-panel {
  padding: 4rem 1.5rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(153, 229, 183, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.03);
}

.pe-cta-title {
  margin: 0 0 0.85rem;
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.pe-cta-text {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.pe-contact {
  scroll-margin-top: 6rem;
  padding: 4rem 0 5.5rem;
  background: #12110f;
}

.pe-contact-title {
  margin: 0 auto 0.75rem;
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.pe-contact-intro {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

.pe-contact-form .form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0.75rem !important;
  color: #fff !important;
  min-height: 3.25rem;
  padding: 0.85rem 1.1rem;
}

.pe-contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.pe-contact-form textarea.form-control {
  min-height: 8rem;
  resize: vertical;
}

.pe-contact-form .form-control:focus {
  border-color: rgba(153, 229, 183, 0.55) !important;
  box-shadow: 0 0 0 0.2rem rgba(153, 229, 183, 0.15) !important;
}

.pe-captcha {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.pe-captcha span {
  color: rgba(255, 255, 255, 0.78) !important;
}

.design-stage-captcha {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.85rem 1.1rem;
  background: #f6f7f6;
  border: 1px solid #e2e6e2;
  border-radius: 0.5rem;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.design-stage-captcha input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  accent-color: #99e5b7;
  cursor: pointer;
}

.design-stage-captcha span {
  color: #141414;
  font-size: 0.95rem;
  line-height: 1.4;
}

.design-stage-contact-form .form-control {
  background: #f6f7f6;
  border: 1px solid #e2e6e2;
  border-radius: 0.5rem;
  color: #141414;
  min-height: 3.25rem;
  padding: 0.85rem 1.1rem;
}

.design-stage-contact-form textarea.form-control {
  min-height: 8rem;
  resize: vertical;
}

.design-stage-contact-form .form-control:focus {
  border-color: #99e5b7;
  box-shadow: 0 0 0 0.2rem rgba(153, 229, 183, 0.25);
}

@media (max-width: 991px) {
  .pe-hero-title {
    max-width: none;
  }

  .pe-float-stack {
    margin: 1.5rem auto 0;
  }
}

@media (max-width: 575px) {
  .pe-glass-card--offset,
  .pe-glass-card--offset-2 {
    margin-left: 0;
  }
}

/* E-Davetiye page */
.edavetiye-page {
  background: #12110f;
  color: #ffffff;
}

.edavetiye-page .ed-footer-compact {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.ed-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 5rem;
  background: #12110f;
}

@media (min-width: 992px) {
  .ed-hero {
    padding: 10rem 0 6.5rem;
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
  }
}

.ed-hero-glow {
  position: absolute;
  top: 15%;
  right: -10%;
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 230, 185, 0.14) 0%, rgba(143, 230, 185, 0.04) 42%, transparent 70%);
  pointer-events: none;
  filter: blur(6px);
  animation: pe-glow-breathe 11s ease-in-out infinite;
}

.ed-hero-cursor-light {
  z-index: 0;
  opacity: 0.85;
}

.ed-hero-title {
  margin: 0 0 1.25rem;
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

.ed-hero-lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.ed-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(153, 229, 183, 0.45);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #99e5b7;
  background: rgba(153, 229, 183, 0.08);
}

/* Preview composition */
.ed-preview {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ed-preview-frame {
  position: absolute;
  inset: 8% 6%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.75rem;
  pointer-events: none;
}

.ed-preview-card {
  position: absolute;
  width: 46%;
  aspect-ratio: 3 / 4;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #1a1a1a 0%, #121212 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.ed-preview-card--back-left {
  left: 0;
  top: 18%;
  transform: rotate(-8deg) translateX(-4%);
  z-index: 1;
}

.ed-preview-card--back-right {
  right: 0;
  top: 22%;
  transform: rotate(9deg) translateX(4%);
  z-index: 1;
}

.ed-preview-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 1.1rem;
  height: 100%;
}

.ed-preview-line {
  display: block;
  height: 6px;
  width: 72%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.ed-preview-line--sm {
  width: 38%;
  height: 5px;
  background: rgba(153, 229, 183, 0.35);
}

.ed-preview-line--md {
  width: 55%;
}

.ed-preview-dot {
  margin-top: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #99e5b7;
  opacity: 0.7;
}

.ed-phone {
  position: relative;
  z-index: 3;
  width: min(58%, 220px);
  aspect-ratio: 9 / 18.5;
  border-radius: 1.65rem;
  padding: 0.55rem;
  background: linear-gradient(180deg, #2a2a2a 0%, #151515 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(153, 229, 183, 0.08);
}

.ed-phone-notch {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 0.55rem;
  border-radius: 999px;
  background: #0a0a0a;
  z-index: 2;
}

.ed-phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  height: 100%;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(153, 229, 183, 0.12), transparent 55%),
    #101010;
  padding: 1.75rem 1rem 1.25rem;
  text-align: center;
}

.ed-phone-mono {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(153, 229, 183, 0.85);
}

.ed-phone-title {
  font-family: Outfit, Manrope, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

.ed-phone-rule {
  display: block;
  width: 2rem;
  height: 2px;
  border-radius: 999px;
  background: #99e5b7;
  opacity: 0.7;
}

.ed-phone-meta {
  display: block;
  width: 70%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.ed-phone-meta--short {
  width: 45%;
}

.ed-phone-chip {
  margin-top: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(153, 229, 183, 0.35);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #99e5b7;
}

/* Values */
.ed-values {
  padding: 4.5rem 0 5.5rem;
  background: #12110f;
}

.ed-value-card {
  height: 100%;
  padding: 2rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(35, 33, 31, 0.55);
  transition:
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.ed-value-card:hover {
  border-color: rgba(143, 230, 185, 0.48);
  background: rgba(42, 40, 36, 0.72);
  box-shadow:
    0 0 0 1px rgba(143, 230, 185, 0.08),
    0 0 24px rgba(143, 230, 185, 0.1);
}

.ed-values::before,
.ed-vision::before,
.ed-soon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(720px, 72%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(143, 230, 185, 0.28) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.ed-values,
.ed-soon {
  position: relative;
}

.ed-hero-particles {
  z-index: 0;
}

.ed-hero .container {
  position: relative;
  z-index: 1;
}

/* Smoother AOS feel on brand pages */
body.pe-landing [data-aos],
body.edavetiye-page [data-aos] {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
  transition-duration: 0.9s !important;
}

.ed-value-mark {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  background: #99e5b7;
}

.ed-value-mark--square {
  border-radius: 0.2rem;
  background: transparent;
  border: 2px solid #99e5b7;
}

.ed-value-mark--line {
  width: 1.5rem;
  height: 2px;
  border-radius: 999px;
  margin-top: 0.35rem;
  margin-bottom: 1.55rem;
}

.ed-value-title {
  margin: 0 0 0.85rem;
  font-family: Outfit, Manrope, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.ed-value-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

/* Vision */
.ed-vision {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background: #151311;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ed-vision-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ed-vision-shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(153, 229, 183, 0.12);
}

.ed-vision-shape--1 {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -100px;
}

.ed-vision-shape--2 {
  width: 180px;
  height: 180px;
  right: 8%;
  top: -40px;
  border-color: rgba(255, 255, 255, 0.06);
}

.ed-vision-title {
  margin: 0;
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.ed-vision-text {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
}

/* Coming soon */
.ed-soon {
  padding: 5.5rem 0 6rem;
  background: #12110f;
}

.ed-soon-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99e5b7;
}

.ed-soon-title {
  margin: 0 0 1rem;
  font-family: Outfit, Manrope, sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

.ed-soon-text {
  margin: 0 auto 2rem;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 991px) {
  .ed-preview {
    min-height: 360px;
    max-width: 340px;
  }
}

@media (max-width: 575px) {
  .ed-hero {
    padding-top: 7rem;
  }

  .ed-preview-card--back-left {
    transform: rotate(-6deg) translateX(-2%);
  }

  .ed-preview-card--back-right {
    transform: rotate(7deg) translateX(2%);
  }
}

.coppyright .design-stage-copyright {
  margin: 0;
}

/* Footer brand watermark — large, sharp, quiet */
.pe-footer {
  position: relative;
  overflow: hidden;
  background-color: #121211 !important;
}

.pe-footer-mark {
  position: absolute;
  right: -250px;
  bottom: -250px;
  z-index: 0;
  width: 920px;
  height: 920px;
  pointer-events: none;
  user-select: none;
  transform: none;
}

.pe-footer-mark img,
.pe-footer-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.035;
  filter: none;
  shape-rendering: geometricPrecision;
}

.pe-footer-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .pe-footer-mark {
    right: -220px;
    bottom: -220px;
    width: 760px;
    height: 760px;
  }
}

@media (max-width: 575px) {
  .pe-footer-mark {
    right: -180px;
    bottom: -200px;
    width: 580px;
    height: 580px;
  }

  .pe-footer-mark img,
  .pe-footer-mark svg {
    opacity: 0.025;
  }
}

/* Footer: thinner labels, thicker main text */
.footer .footer-widget-list-item > p {
  font-weight: 300 !important;
  letter-spacing: 0.02em;
}

.footer .footer-title,
.footer .footer-widget-link {
  font-weight: 600 !important;
}
