/* ============================================================
   SWEETORA — Main Stylesheet
   Palette: Primary #414A4C | Accent #007FFF | Highlight #1DACD6
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ——— CSS Reset & Base ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #414A4C;
  --accent: #007FFF;
  --highlight: #1DACD6;
  --cream: #FDF6F0;
  --blush: #F9EDE5;
  --soft-gold: #E8D5B0;
  --white: #FFFFFF;
  --text-dark: #2D3436;
  --text-mid: #636E72;
  --text-light: #B2BEC3;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.16);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--primary);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ——— Utility Classes ——— */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,127,255,0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ——— HEADER / NAV ——— */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,246,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(65,74,76,0.08);
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-text span { color: var(--accent); }

nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

nav ul a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

nav ul a:hover { color: var(--primary); }
nav ul a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ——— BLOCK 1: PERVIYBLOCK ——— */
.perviyblock {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 50%, rgba(0,127,255,0.04) 100%);
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  overflow: hidden;
}

.pb-top {
  flex: 0 0 auto;
  padding: 60px 0 40px;
  position: relative;
}

.pb-images-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.pb-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  animation: slideInUp 0.8s forwards;
}

.pb-img-wrap:nth-child(1) { width: 240px; height: 280px; animation-delay: 0.1s; transform: rotate(-3deg); z-index: 2; }
.pb-img-wrap:nth-child(3) { width: 360px; height: 340px; animation-delay: 0.25s; z-index: 3; border-radius: var(--radius-lg); }
.pb-img-wrap:nth-child(5) { width: 240px; height: 280px; animation-delay: 0.4s; transform: rotate(3deg); z-index: 2; }

.pb-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.pb-img-wrap:hover img { transform: scale(1.06); }

/* Lightning SVG between images */
.pb-lightning {
  width: 80px; height: 260px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.pb-lightning svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 8px rgba(29,172,214,0.5));
  animation: lightningPulse 2s ease-in-out infinite;
}

@keyframes lightningPulse {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 8px rgba(29,172,214,0.5)); }
  50% { opacity: 0.7; filter: drop-shadow(0 0 16px rgba(0,127,255,0.8)); }
}

/* Bottom 3 cells */
.pb-bottom {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(65,74,76,0.1);
  margin-top: 40px;
}

.pb-cell {
  padding: 48px 40px;
  border-right: 1px solid rgba(65,74,76,0.1);
  position: relative;
}

.pb-cell:last-child { border-right: none; }

.pb-cell-1 {
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pb-cell-1 .greeting {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 16px;
}

.pb-cell-1 h1 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.pb-cell-1 h1 span { color: var(--highlight); }

.pb-cell-1 p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.pb-cell-2 {
  padding: 0;
  overflow: hidden;
}

.pb-cell-2 img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.6s;
}

.pb-cell-2:hover img { transform: scale(1.04); }

.pb-cell-3 {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pb-cell-3 h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.pb-cell-3 p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.mini-form .form-group {
  margin-bottom: 14px;
}

.mini-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(65,74,76,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
}

.mini-form input:focus { border-color: var(--accent); }
.mini-form input::placeholder { color: var(--text-light); }

/* ——— BLOCK 2: Slider / Carousel ——— */
.slider-section {
  background: var(--white);
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.slide {
  min-width: 100%;
  position: relative;
  height: 520px;
  overflow: hidden;
}

.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(65,74,76,0.85) 0%, rgba(65,74,76,0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.slide-content {
  color: var(--white);
  padding: 60px;
  max-width: 520px;
}

.slide-tag {
  display: inline-block;
  background: var(--highlight);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.slide-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.slide-content p {
  font-size: 1.05rem;
  opacity: 0.88;
  line-height: 1.7;
  margin-bottom: 28px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-light);
  border: none;
  transition: var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent);
}

/* ——— BLOCK 3: Accordion ——— */
.accordion-section {
  background: var(--cream);
}

.accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.accordion-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.accordion-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.accordion-visual-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  max-width: 240px;
}

.accordion-visual-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.accordion-visual-badge .badge-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 4px;
}

.accordion-content { padding-top: 20px; }

.accordion-item {
  border-bottom: 1px solid rgba(65,74,76,0.12);
  margin-bottom: 4px;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.accordion-trigger:hover { color: var(--accent); }

.accordion-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform 0.35s, background 0.35s, color 0.35s;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}

.accordion-item.open .accordion-body {
  max-height: 400px;
}

.accordion-body-inner {
  padding: 0 0 24px;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
}

.accordion-body-inner ul {
  list-style: none;
  margin-top: 12px;
}

.accordion-body-inner ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.accordion-body-inner ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.6rem;
  top: 10px;
}

/* ——— BLOCK 4: Circular About ——— */
.about-section {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,127,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,172,214,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 64px;
  align-items: center;
}

.about-stats-left, .about-stats-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-stat {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s, transform 0.6s;
}

.about-stat.visible { opacity: 1; transform: translateX(0); }
.about-stats-right .about-stat { transform: translateX(30px); }
.about-stats-right .about-stat.visible { transform: translateX(0); }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  line-height: 1.4;
}

.about-photo-wrap {
  position: relative;
  width: 320px; height: 320px;
  flex-shrink: 0;
}

.about-photo-ring {
  position: absolute;
  inset: -20px;
  border: 2px dashed rgba(29,172,214,0.4);
  border-radius: 50%;
  animation: rotateSlow 20s linear infinite;
}

.about-photo-ring-2 {
  position: absolute;
  inset: -40px;
  border: 1px solid rgba(0,127,255,0.2);
  border-radius: 50%;
  animation: rotateSlow 30s linear infinite reverse;
}

@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.about-photo-dots {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
}

.about-photo-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  top: 50%; left: 50%;
}

.about-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 60px rgba(0,127,255,0.2);
}

.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-center-text {
  text-align: center;
  margin-top: 20px;
}

.about-center-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.about-center-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ——— BLOCK 5: Table Schedule ——— */
.table-section {
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(65,74,76,0.1);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.schedule-table th {
  background: var(--primary);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 24px;
  text-align: left;
}

.schedule-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.schedule-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.schedule-table td {
  padding: 18px 24px;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(65,74,76,0.07);
}

.schedule-table tr:last-child td { border-bottom: none; }

.schedule-table tr:nth-child(even) td { background: rgba(253,246,240,0.5); }

.schedule-table tr:hover td {
  background: rgba(0,127,255,0.04);
  transition: background 0.2s;
}

.badge-level {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

.badge-level.beginner { background: rgba(29,172,214,0.12); color: var(--highlight); }
.badge-level.middle { background: rgba(0,127,255,0.1); color: var(--accent); }
.badge-level.all { background: rgba(65,74,76,0.08); color: var(--primary); }

.badge-available {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00B894;
  margin-right: 6px;
}

.badge-limited {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FDCB6E;
  margin-right: 6px;
}

/* ——— BLOCK 6: Price Cards ——— */
.pricing-section {
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(0,127,255,0.15); }
.price-card:hover::before { transform: scaleX(1); }

.price-card.featured {
  background: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.price-card.featured::before { transform: scaleX(1); }
.price-card.featured:hover { transform: scale(1.05) translateY(-6px); }

.price-badge {
  position: absolute;
  top: 20px; right: -8px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 16px 4px 12px;
  letter-spacing: 0.08em;
  border-radius: 4px 0 0 4px;
}

.price-badge::after {
  content: '';
  position: absolute;
  top: 100%; right: 0;
  border: 8px solid transparent;
  border-top-color: #0056b3;
  border-right-color: #0056b3;
  border-bottom: none;
}

.price-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(0,127,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.price-card.featured .price-icon { background: rgba(255,255,255,0.1); }

.price-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.price-card.featured .price-name { color: var(--white); }

.price-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}

.price-card.featured .price-desc { color: rgba(255,255,255,0.65); }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.price-amount .currency { font-size: 1.1rem; color: var(--text-mid); }
.price-card.featured .price-amount .currency { color: rgba(255,255,255,0.6); }

.price-amount .value {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.price-card.featured .price-amount .value { color: var(--white); }

.price-amount .period {
  font-size: 0.85rem;
  color: var(--text-mid);
}

.price-card.featured .price-amount .period { color: rgba(255,255,255,0.5); }

.price-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card.featured .price-features li { color: rgba(255,255,255,0.7); }

.price-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,127,255,0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.price-card.featured .price-features li::before {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.price-details {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.price-card.featured .price-details { color: rgba(255,255,255,0.4); }

/* ——— BLOCK 7: Interactive Calculator ——— */
.calculator-section {
  background: var(--white);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.calc-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(65,74,76,0.1);
}

.calc-group {
  margin-bottom: 28px;
}

.calc-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(65,74,76,0.15);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,127,255,0.4);
  transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.calc-slider-val {
  text-align: right;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 8px;
}

.calc-radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(65,74,76,0.15);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.calc-radio-label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(0,127,255,0.06);
  color: var(--accent);
  font-weight: 600;
}

.calc-radio-label input { accent-color: var(--accent); }

.calc-result {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.calc-result-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.calc-result-price {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.calc-result-currency {
  font-size: 1.5rem;
  color: var(--highlight);
  vertical-align: super;
}

.calc-result-per {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.calc-result-savings {
  background: rgba(29,172,214,0.15);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  color: var(--highlight);
  font-size: 0.9rem;
  margin-bottom: 32px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ——— BLOCK 8: Selling Text ——— */
.selling-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2D3A3C 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.selling-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(0,127,255,0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(29,172,214,0.1) 0%, transparent 50%);
}

.selling-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.selling-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(255,255,255,0.06);
  line-height: 0.5;
  margin-bottom: 32px;
  display: block;
}

.selling-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 32px;
  line-height: 1.25;
}

.selling-inner h2 em {
  font-style: italic;
  color: var(--highlight);
}

.selling-paras {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

.selling-paras p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
}

.selling-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.selling-highlight {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  transition: var(--transition);
}

.selling-highlight:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.selling-highlight-icon { font-size: 2rem; margin-bottom: 12px; }
.selling-highlight h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.selling-highlight p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.6; }

/* ——— BLOCK: Infographic ——— */
.infographic-section {
  background: var(--cream);
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.infographic-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.infographic-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.infographic-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.infographic-card:hover::after { transform: scaleX(1); }

.infographic-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,127,255,0.1), rgba(29,172,214,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  transition: transform 0.4s;
}

.infographic-card:hover .infographic-icon { transform: rotate(10deg) scale(1.1); }

.infographic-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.infographic-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.infographic-progress {
  margin-top: 16px;
}

.progress-bar-wrap {
  height: 6px;
  background: rgba(65,74,76,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  width: 0;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.progress-label span:first-child { color: var(--text-mid); }
.progress-label span:last-child { color: var(--accent); font-weight: 600; }

/* ——— Gallery ——— */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  min-height: 180px;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-column: span 2; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(65,74,76,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ——— BLOCK: Interactive Cards + Popup ——— */
.directions-section { background: var(--blush); }

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.direction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.direction-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,127,255,0.2);
}

.direction-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: transform 0.4s;
}

.direction-card:hover .direction-img { transform: scale(1.03); }

.direction-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.direction-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.direction-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ——— Modal ——— */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(65,74,76,0.2);
  background: none;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.modal-header { margin-bottom: 24px; }
.modal-header .direction-icon { font-size: 3rem; margin-bottom: 12px; }
.modal-header h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 8px; }
.modal-header p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

.modal-form .form-group { margin-bottom: 16px; }

.modal-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.modal-form input,
.modal-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(65,74,76,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.modal-form input:focus,
.modal-form select:focus { border-color: var(--accent); background: var(--white); }

.modal-form .radio-group { display: flex; flex-direction: column; gap: 8px; }

.modal-form .radio-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(65,74,76,0.15);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.modal-form .radio-opt:has(input:checked) {
  border-color: var(--accent);
  background: rgba(0,127,255,0.05);
  color: var(--accent);
  font-weight: 600;
}

.modal-form .radio-opt input { accent-color: var(--accent); }

.form-footer-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

/* ——— Main Form ——— */
.main-form-section {
  background: var(--white);
}

.main-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.main-form-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
}

.main-form-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(65,74,76,0.08);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(65,74,76,0.18);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,127,255,0.1);
}

.form-group input::placeholder { color: var(--text-light); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

.form-privacy a { color: var(--accent); text-decoration: underline; }

/* ——— Cookie Banner ——— */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: var(--white);
  z-index: 3000;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text { font-size: 0.88rem; color: rgba(255,255,255,0.8); max-width: 600px; }
.cookie-text a { color: var(--highlight); }

.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cookie-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.cookie-btn-accept { background: var(--accent); color: var(--white); border-color: var(--accent); }
.cookie-btn-accept:hover { background: transparent; color: var(--accent); }

.cookie-btn-minimal { background: transparent; color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.25); }
.cookie-btn-minimal:hover { border-color: var(--white); color: var(--white); }

.cookie-btn-config { background: transparent; color: var(--highlight); border-color: var(--highlight); }
.cookie-btn-config:hover { background: var(--highlight); color: var(--white); }

/* ——— Footer ——— */
#footer {
  background: #1A2022;
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: var(--highlight); }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-socials { display: flex; gap: 12px; }

.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  text-decoration: none;
}

.footer-social:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ——— Scroll Animations ——— */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-left, .about-stats-right { flex-direction: row; flex-wrap: wrap; gap: 24px; justify-content: center; }
  .about-photo-wrap { margin: 0 auto; }
}

@media (max-width: 900px) {
  .section-pad { padding: 72px 0; }
  .accordion-layout { grid-template-columns: 1fr; }
  .accordion-visual { aspect-ratio: 16/9; max-height: 360px; }
  .calc-layout { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
  .main-form-layout { grid-template-columns: 1fr; }
  .main-form-img { display: none; }
  .selling-highlights { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  nav.open ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    padding: 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(65,74,76,0.1);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
}

@media (max-width: 700px) {
  .pb-bottom { grid-template-columns: 1fr; }
  .pb-cell { border-right: none; border-bottom: 1px solid rgba(65,74,76,0.1); }
  .pb-images-row { gap: 8px; }
  .pb-img-wrap:nth-child(1), .pb-img-wrap:nth-child(5) { display: none; }
  .pb-lightning { display: none; }
  .pb-img-wrap:nth-child(3) { width: 100%; height: 260px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(7) { grid-column: span 1; }
  .directions-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .selling-section .container { padding: 0 20px; }
  .calc-box { padding: 32px 24px; }
  .calc-result { padding: 32px 24px; }
}

/* ——— Mobile nav menu ——— */
@media (max-width: 900px) {
  nav { position: static; }
}

/* ——— Lazy image placeholder ——— */
img.loading {
  background: linear-gradient(90deg, var(--blush) 25%, var(--soft-gold) 50%, var(--blush) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
