:root {
  --orange: #e15b24;
  --gold: #d4af80;
}

@font-face {
  font-family: "Gliker";
  font-weight: 400;
  font-style: normal;
  src:
    url("../font/gliker-regular.woff2") format("woff2"),
    url("../font/gliker-regular.woff") format("woff");
}

body {
  font-family:
    "Poppins", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background: linear-gradient(135deg, #f9f7f4 0%, #fefdfb 100%);
  color: #1f2937;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
h1,
h2,
h3 {
  font-family: "Gliker", sans-serif !important;
}
/* HEADER */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 128, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

main {
  background: #f6e7d6;
}
section {
  width: 100%;
}

#ponuda section {
  width: 100%;
}

body.landing-page {
  background: #f6e7d6;
}

/* .landing-page #ponuda section {
  max-width: 1200px;
} */

.promo-banner {
  position: sticky;
  top: 0;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #d8f6c3 0%, #b9e8a4 100%);
  color: #1f4d3f;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  z-index: 110;
  box-shadow: 0 4px 12px rgba(31, 77, 63, 0.08);
  display: none;
}

.promo-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(31, 77, 63, 0.12);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(212, 175, 128, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #2a2a2a;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle::before {
  transform: translateY(-1px);
}
.menu-toggle::after {
  transform: translateY(1px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-3px) rotate(-45deg);
}

.logo {
  height: 48px;
  background: linear-gradient(135deg, #d4af80 0%, #8b7355 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}
.logo img {
  height: 100%;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  margin-left: 40px;
  text-decoration: none;
  color: #2a2a2a;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.main-nav a:hover {
  color: #d4af80;
}

.main-nav a.active {
  color: #d4af80;
  border-bottom: 2px solid #d4af80;
  padding-bottom: 5px;
}

@media (max-width: 880px) {
  .nav-container {
    padding: 8px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(212, 175, 128, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    margin-left: 0;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .main-nav a.active {
    border-bottom: none;
    border-left: 3px solid #d4af80;
    padding-bottom: 10px;
  }
}

/* leptop deo kraj */

section.hero-invite-section {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-invite-section {
  position: relative;
  overflow: hidden;
  background: #352017;
  min-height: 100vh;
  padding: 100px 20px;
}

.hero-invite-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-invite-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  /* padding: 0 24px; */
  margin-top: 1rem;
}

.hero-invite-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-invite-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-invite-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(225, 91, 36, 0.15);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-invite-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-invite-title {
  color: #f6e7d6;
  font-size: clamp(2.7rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0;
  text-align: left;
}

.hero-invite-title span {
  color: var(--orange);
  display: inline-block;
}

.hero-invite-description {
  max-width: 550px;
  color: rgba(246, 231, 214, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: left;
}

.hero-invite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-invite-btn {
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-invite-btn-primary {
  background: var(--orange);
  color: #fff;
}

.hero-invite-btn-primary:hover {
  transform: translateY(-2px);
}

.hero-invite-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f6e7d6;
}

.hero-invite-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  color: rgba(246, 231, 214, 0.55);
  font-size: 0.9rem;
}

.hero-invite-phone-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  right: 0;
}

.hero-invite-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--orange);
  filter: blur(120px);
  opacity: 0.25;
}

.hero-invite-phone {
  position: relative;
  width: 360px;
  padding: 10px;
  border-radius: 44px;
  background: linear-gradient(145deg, #5a3020, #231009);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.7);
  scale: 0.75;
}

.hero-invite-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 24px;
  background: #1a0c05;
  border-radius: 30px;
  z-index: 10;
}

.hero-invite-screen {
  overflow: hidden;
  border-radius: 36px;
  background: #f6e7d6;
}

.hero-invite-header {
  background: #352017;
  text-align: center;
  padding: 60px 20px 30px;
}

.hero-invite-event-type {
  color: rgba(246, 231, 214, 0.6);
  font-size: 10px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.hero-invite-header h2 {
  color: #f6e7d6;
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-invite-date {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 2px;
}

.hero-invite-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 14px;
  background: var(--orange);
  color: white;
}
.hero-invite-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-invite-body {
  padding: 25px;
}

.hero-invite-text {
  text-align: center;
  color: #352017;
  line-height: 1.7;
  margin-bottom: 25px;
}

.hero-rsvp h4 {
  text-align: center;
  margin-bottom: 15px;
  color: #352017;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.hero-rsvp-yes,
.hero-rsvp-no {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  margin-bottom: 10px;
}

.hero-rsvp-yes {
  background: var(--orange);
  color: white;
}

.hero-rsvp-no {
  background: transparent;
  border: 1px solid rgba(53, 32, 23, 0.2);
  color: #352017;
}

.hero-powered {
  text-align: center;
  margin-top: 25px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(53, 32, 23, 0.35);
}

.hero-confirmed-badge {
  position: absolute;
  top: 90px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #352017;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-confirmed-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

@media (max-width: 992px) {
  .hero-invite-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-invite-content {
    align-items: center;
  }

  .hero-invite-description {
    font-size: 1rem;
    margin: 0 auto;
    text-align: left;
  }

  .hero-confirmed-badge {
    right: 0;
    left: auto;
    transform: none;
    top: 48px;
  }
  .hero-invite-grid {
    position: relative;
  }
  .hero-laptop-showcase {
    position: absolute;
    margin-top: 120px;
    right: 0;
  }
  .hero-browser-screen {
    height: 240px;
  }
  .hero-invite-phone-wrapper {
    position: relative;
  }
  .hero-invite-phone {
    width: 100%;
    margin: 0 auto;
    scale: 0.9;
  }
}

.hero-section {
  position: relative;
  padding: 72px 0 56px;
  max-width: 100%;
  text-align: left;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 208, 145, 0.18),
      transparent 22%
    ),
    linear-gradient(180deg, #40291f 0%, #2c1a12 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: center;
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-copy {
  max-width: 680px;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd99f;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 22px;
  color: #ffffff;
}

.hero-copy p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 30px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-card {
  padding: 28px 24px;
  border-radius: 28px;
  min-height: 210px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 217, 150, 0.4),
    transparent 35%
  );
  pointer-events: none;
}

.hero-card-number {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #8b5d29;
  margin-bottom: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.2;
  color: #1f1f1f;
}

.hero-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.75);
}

.hero-card--middle {
  transform: translateX(16px);
}

.hero-card--accent {
  background: #f6e7d6;
  border-color: rgba(212, 175, 128, 0.32);
}

.button-primary {
  background: var(--orange);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visuals {
    grid-template-columns: 1fr;
  }

  .hero-card--middle {
    transform: none;
  }
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 992px) {
  .hero-copy {
    padding: 36px 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }
}

@media (max-width: 680px) {
  .hero-section {
    padding: 60px 18px 40px;
  }

  .hero-copy {
    padding: 28px 20px;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
}

/* SERVICES (single consolidated section) */

/* .page-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px 96px;
} */

/* INTRO SEKCIJA */
.intro-wrapper {
  /* background: #f6e7d6; */
  padding: 100px 20px;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-header {
  text-align: center;
  margin-bottom: 80px;
}

.intro-subtitle {
  color: #352017;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.intro-title {
  color: #352017;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 700;
}

.intro-description {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(53, 32, 23, 0.85);
  font-size: 1.15rem;
  line-height: 1.7;
}

.intro-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 120px;
}

.intro-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.12),
    0 10px 20px rgba(0, 0, 0, 0.05);
}

.intro-icon-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #f6e7d6;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.intro-icon-circle svg {
  width: 34px;
  height: 34px;
}

.intro-card h3 {
  color: #352017;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.intro-card p {
  color: rgba(53, 32, 23, 0.8);
  line-height: 1.7;
}

.intro-steps-title {
  text-align: center;
  color: #352017;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 70px;
}

.intro-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.intro-step-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 55px 30px 35px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.03);
}

.intro-step-number {
  position: absolute;
  top: -24px;
  left: 30px;

  width: 54px;
  height: 54px;

  background: var(--orange);
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 18px;

  box-shadow: 0 10px 20px rgba(225, 91, 36, 0.35);
}

.intro-step-card h3 {
  color: #352017;
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.intro-step-card p {
  color: rgba(53, 32, 23, 0.8);
  line-height: 1.7;
}
.intro-step-card.white-bg p {
  color: rgba(53, 32, 23, 0.8);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .intro-features-grid,
  .intro-steps-grid {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .intro-step-card {
    max-width: 650px;
    margin: 0 auto;
  }

  .intro-features-grid {
    margin-bottom: 80px;
  }
}

.intro-section {
  margin-bottom: 64px;
  padding: 64px 20px;
  background: transparent;
}

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

.intro-header {
  text-align: center;
  margin-bottom: 52px;
}

.intro-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.intro-header .intro-subtitle {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 500;
  color: var(--orange);
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.intro-header h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #352017;
  margin: 20px auto 0;
  border-radius: 2px;
}

.intro-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  margin: 0 auto;
  font-weight: 300;
}

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

.intro-benefit {
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}

.intro-benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.intro-benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.22);
}

/* Intro cards updated to hero-inspired warm palette */
.intro-benefit:nth-child(1) {
  background: linear-gradient(
    180deg,
    rgba(255, 154, 92, 0.16),
    rgba(255, 154, 92, 0.05)
  );
}

.intro-benefit:nth-child(1)::before {
  background: linear-gradient(90deg, #ff9a5c 0%, var(--orange) 100%);
}

.intro-benefit:nth-child(1):hover {
  box-shadow: 0 24px 48px rgba(225, 91, 36, 0.24);
}

.intro-benefit:nth-child(2) {
  background: linear-gradient(
    180deg,
    rgba(212, 175, 128, 0.16),
    rgba(212, 175, 128, 0.05)
  );
}

.intro-benefit:nth-child(2)::before {
  background: linear-gradient(90deg, #ffd9b3 0%, #ff9a5c 100%);
}

.intro-benefit:nth-child(2):hover {
  box-shadow: 0 24px 48px rgba(212, 175, 128, 0.24);
}

.intro-benefit:nth-child(3) {
  background: linear-gradient(
    180deg,
    rgba(139, 93, 41, 0.16),
    rgba(139, 93, 41, 0.05)
  );
}

.intro-benefit:nth-child(3)::before {
  background: linear-gradient(90deg, #d4af80 0%, #8b5d29 100%);
}

.intro-benefit:nth-child(3):hover {
  box-shadow: 0 24px 48px rgba(139, 93, 41, 0.24);
}

.intro-benefit-icon {
  font-size: 44px;
  margin-bottom: 16px;
  line-height: 1;
  display: inline-block;
}

.intro-benefit h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.intro-benefit p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.intro-process-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.16);
  border-radius: 24px;
  padding: 44px 40px;
}

.intro-process-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0 0 40px;
  position: relative;
  padding-bottom: 20px;
}

.intro-process-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff9a5c 0%, #d4af80 100%);
  border-radius: 1px;
}

.intro-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.intro-step-card {
  border-radius: 22px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

/* Hero-inspired step cards */
.intro-step-card:nth-child(1) {
  background: white;
}

.intro-step-card:nth-child(1) .step-dot {
  background: linear-gradient(135deg, #ff9a5c 0%, var(--orange) 100%);
}

.intro-step-card:nth-child(1):hover {
  box-shadow: 0 16px 40px rgba(225, 91, 36, 0.18);
  transform: translateY(-2px);
  border-color: rgba(255, 154, 92, 0.3);
}

.intro-step-card:nth-child(2) {
  background: white;
}

.intro-step-card:nth-child(2) .step-dot {
  background: linear-gradient(135deg, #ffd9b3 0%, #ffb76f 100%);
}

.intro-step-card:nth-child(2):hover {
  box-shadow: 0 18px 44px rgba(255, 169, 92, 0.24);
  transform: translateY(-2px);
  border-color: rgba(255, 217, 150, 0.3);
}

.intro-step-card:nth-child(3) {
  background: var(--orange);
}

.intro-step-card:nth-child(3) .step-dot {
  background: linear-gradient(135deg, #d4af80 0%, #8b5d29 100%);
}

.intro-step-card:nth-child(3):hover {
  box-shadow: 0 18px 44px rgba(139, 93, 41, 0.26);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1;
}

.intro-step-card:nth-child(1) .step-number {
  color: #ff8b50;
}

.intro-step-card:nth-child(2) .step-number {
  color: #ffcc9c;
}

.intro-step-card:nth-child(3) .intro-step-number {
  color: #d4af80;
  background: #000000;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 12px auto 20px;
}

.intro-step-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.intro-step-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* TABLET */
@media (max-width: 1024px) {
  .intro-section {
    padding: 48px 20px;
  }

  .intro-grid,
  .intro-steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-invite-btn-primary {
    display: none;
  }
  .hero-invite-actions {
    width: 100%;
  }
  .intro-section {
    margin-bottom: 48px;
    padding: 40px 20px;
    border-radius: 16px;
  }

  .intro-header {
    margin-bottom: 40px;
  }

  .intro-header h2 {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    margin-bottom: 16px;
  }

  .intro-header h2::after {
    margin-top: 16px;
  }

  .intro-lead {
    font-size: 14px;
  }

  .intro-benefit {
    padding: 24px 20px;
  }

  .intro-process-box {
    padding: 32px 24px;
  }

  .intro-step-card {
    padding: 24px 20px;
  }

  .step-number {
    font-size: 36px;
  }
}

.services-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #1a0f0a 0%, #0f0805 100%);
  color: #fff;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 20px;
}

.services-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffd9b3;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(255, 217, 150, 0.06);
  border-radius: 100px;
}

.services-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.1;
}

.services-header p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* 3 cards on top row, all equal width */
.service-card:nth-child(1) {
  grid-column: span 1;
}
.service-card:nth-child(2) {
  grid-column: span 1;
}
.service-card:nth-child(3) {
  grid-column: span 1;
}
.service-card:nth-child(4) {
  grid-column: span 1;
}
.service-card:nth-child(5) {
  grid-column: span 1;
}
.service-card:nth-child(6) {
  grid-column: span 1;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  min-height: 380px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.service-card:nth-child(n + 4) {
  min-height: 280px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.service-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 18px 20px;
  z-index: 5;
  display: none;
}

.service-card-visual {
  display: block;
  flex: 1 1 auto;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  text-decoration: none;
  position: relative;
}

.service-card-visual--static {
  cursor: default;
}

.service-card-visual img,
.service-card-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card-visual img,
.service-card:hover .service-card-visual video {
  transform: scale(1.04) rotate(0.1deg);
}

/* Overlay on visuals */
.service-card-visual {
  position: relative;
}

.card-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(28, 15, 8, 0.4) 0%,
    rgba(28, 15, 8, 0.7) 50%,
    rgba(28, 15, 8, 0.85) 100%
  );
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 16px;
  transition: background 0.3s ease;
}

.service-card:hover .card-overlay {
  background: linear-gradient(
    135deg,
    rgba(28, 15, 8, 0.5) 0%,
    rgba(28, 15, 8, 0.75) 50%,
    rgba(28, 15, 8, 0.95) 100%
  );
}

.card-overlay h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffa366;
  line-height: 1.2;
}

.card-overlay p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Staggered card placement using CSS variable */
.service-card {
  --offset: 0px;
  transform: translateY(var(--offset));
  position: relative;
}

.service-card:nth-child(1) {
  --offset: 0px;
}
.service-card:nth-child(2) {
  --offset: 16px;
}
.service-card:nth-child(3) {
  --offset: -10px;
}
.service-card:nth-child(4) {
  --offset: 20px;
}
.service-card:nth-child(5) {
  --offset: -6px;
}
.service-card:nth-child(6) {
  --offset: 12px;
}

/* Colored backgrounds for info cards (4-6) */
.service-card:nth-child(4) .service-card-visual {
  background: linear-gradient(135deg, #8b6f47 0%, #6b4c2f 100%);
}

.service-card:nth-child(5) .service-card-visual {
  background: linear-gradient(135deg, #e17a48 0%, #c66a38 100%);
}

.service-card:nth-child(6) .service-card-visual {
  background: linear-gradient(135deg, #d4794f 0%, #ab5f3e 100%);
}

.service-card:hover {
  transform: translateY(calc(var(--offset) - 8px));
}

/* clickable full-card layer */
.service-card-full-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

/* ensure overlays, titles, and footers sit above the full link */

.card-overlay,
.service-card-title,
.service-card-footer {
  position: relative;
  z-index: 5;
}

.service-card-visual {
  position: relative;
}

.service-card-footer {
  display: flex;
  gap: 12px 20px;
  padding: 16px 20px 20px;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  color: #ffd9b3;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.18s ease;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 240px;
    border-radius: 12px;
  }
}

.service-link:hover {
  color: #b8956a;
  border-color: #b8956a;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .service-card:nth-child(5):last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .page-main {
    padding: 0;
  }

  .services-header {
    margin-bottom: 36px;
  }

  .services-jump {
    gap: 10px;
    margin-bottom: 40px;
  }

  .services-jump a {
    font-size: 12px;
    padding: 8px 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card:nth-child(5):last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

  .service-card-visual {
    min-height: 200px;
  }

  .service-card-visual img,
  .service-card-visual video {
    min-height: 200px;
  }
}

/* BENEFITS / WHY DIGITAL */

.benefits-section {
  margin-top: 80px;
  padding-top: 72px;
  border-top: 1px solid rgba(212, 175, 128, 0.25);
  scroll-margin-top: 100px;
}

/* SEO CONTENT SECTION */
.seo-content-section {
  margin-top: 72px;
  padding: 56px 0 8px;
  border-top: 1px solid rgba(212, 175, 128, 0.2);
}

.seo-content-container {
  max-width: 1100px;
  margin: 0 auto;
}

.seo-content-header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.seo-content-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(212, 175, 128, 0.12);
  border-radius: 999px;
}

.seo-content-header h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 1.25;
}

.seo-content-header p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.72);
  margin: 0;
}

.seo-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.seo-step-card {
  background: #fff;
  border: 1px solid rgba(212, 175, 128, 0.22);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.04);
}

.template-gallery-order-link{
  text-decoration: none;
}

.seo-step-number {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #b8956a;
  margin-bottom: 8px;
}

.seo-step-card h3 {
  font-size: 20px;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.seo-step-card p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.72);
  margin: 0;
}

.seo-content-note {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 18px 22px;
  border-radius: 12px;
  border-left: 3px solid #d4af80;
  background: #f7f3ec;
}

.seo-content-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.74);
}

.benefits-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.benefits-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(212, 175, 128, 0.12);
  border-radius: 100px;
}

.benefits-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.25;
}

.benefits-lead,
.benefits-compare {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.75);
  margin: 0 0 16px;
  font-weight: 300;
}

.benefits-compare {
  padding: 20px 24px;
  background: #f7f3ec;
  border-radius: 12px;
  border-left: 3px solid #d4af80;
  text-align: left;
  margin-bottom: 0;
}

.benefits-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-item {
  background: #fff;
  border: 1px solid rgba(212, 175, 128, 0.22);
  border-radius: 14px;
  padding: 24px 26px;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.benefit-item:hover {
  border-color: rgba(212, 175, 128, 0.45);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}

.benefit-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  line-height: 1.35;
}

.benefit-item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

@media (max-width: 900px) {
  .seo-steps-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .seo-content-section {
    margin-top: 56px;
    padding-top: 44px;
  }

  .seo-content-header {
    margin-bottom: 28px;
  }

  .seo-content-header p {
    font-size: 15px;
  }

  .benefits-section {
    margin-top: 56px;
    padding-top: 48px;
  }

  .benefits-header {
    margin-bottom: 32px;
  }

  .benefits-compare {
    padding: 16px 18px;
    font-size: 15px;
  }
}

/* Legacy offer blocks (kept for other pages) */
.offers-modern {
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px 80px;
}

.online-ponuda {
  margin-top: 48px;
  padding-top: 72px;
  border-top: 1px solid rgba(212, 175, 128, 0.2);
}

.online-ponuda-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.online-ponuda-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(212, 175, 128, 0.12);
  border-radius: 100px;
}

.online-ponuda-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.online-ponuda-header p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.7);
  font-weight: 300;
  margin: 0;
}

.offers-showcase {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.offer-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 28px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 128, 0.15);
  box-shadow:
    0 4px 24px rgba(26, 26, 26, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.offer-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 128, 0.35);
  box-shadow:
    0 20px 48px rgba(26, 26, 26, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.offer-item-right .offer-media {
  order: -1;
}

.offer-content-card {
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.offer-content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 128, 0.6),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.offer-item:hover .offer-content-card::before {
  opacity: 1;
}

.offer-card-content {
  position: relative;
  z-index: 1;
}

.offer-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  background: rgba(255, 255, 255, 0.65);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.offer-content-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  line-height: 1.25;
}

.offer-brief {
  font-size: 15px;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.55);
  margin: 0 0 14px;
  line-height: 1.5;
}

.offer-details {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.72);
  margin: 0 0 24px;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 100px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.06);
}

.offer-cta::after {
  content: "→";
  transition: transform 0.25s ease;
}

.offer-cta:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.15);
}

.offer-cta:hover::after {
  transform: translateX(4px);
}

.offer-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.offer-media-frame {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #f3efe8 0%, #ebe4d9 100%);
  box-shadow:
    0 12px 32px rgba(26, 26, 26, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  position: relative;
}

.offer-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 128, 0.2);
  pointer-events: none;
}

.offer-media-frame img,
.offer-media-frame video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-item:hover .offer-media-frame img,
.offer-item:hover .offer-media-frame video {
  transform: scale(1.04);
}

/* Rounded offers section */
.rounded-offers-section {
  grid-column: span 3;
  margin-top: 60px;
}

.variant-sand {
  background: linear-gradient(135deg, #f5d9c3 0%, #f9e4cf 100%);
  border: 1px solid rgba(209, 165, 115, 0.2);
}

.variant-sand:hover {
  background: linear-gradient(135deg, #f9d9c3 0%, #fce4cf 100%);
}

.variant-rose {
  background: linear-gradient(135deg, #f5c8d8 0%, #f9d5e0 100%);
  border: 1px solid rgba(203, 141, 151, 0.2);
}

.variant-rose:hover {
  background: linear-gradient(135deg, #f8c8d8 0%, #fcd5e0 100%);
}

.variant-mint {
  background: linear-gradient(135deg, #d9e8d6 0%, #e5f0e2 100%);
  border: 1px solid rgba(132, 179, 150, 0.2);
}

.variant-mint:hover {
  background: linear-gradient(135deg, #dcebd9 0%, #e8f3e5 100%);
}

.variant-blue {
  background: linear-gradient(135deg, #d8dff5 0%, #e3e8f8 100%);
  border: 1px solid rgba(123, 145, 207, 0.2);
}

.variant-blue:hover {
  background: linear-gradient(135deg, #dce2f5 0%, #e7ebf8 100%);
}

.variant-gold {
  background: linear-gradient(135deg, #f0d99d 0%, #f5e1b0 100%);
  border: 1px solid rgba(212, 175, 128, 0.3);
}

.variant-gold:hover {
  background: linear-gradient(135deg, #f3dca0 0%, #f8e4b3 100%);
}

.variant-lavender {
  background: linear-gradient(135deg, #dcc9e8 0%, #e5d8f0 100%);
  border: 1px solid rgba(150, 126, 187, 0.2);
  color: #2a2a2a;
}

.variant-lavender:hover {
  background: linear-gradient(135deg, #dfcce8 0%, #e8dbf0 100%);
}

.variant-lavender .offer-card-content p {
  color: rgba(20, 20, 20, 0.75);
}

.variant-sage {
  background: linear-gradient(135deg, #d9dfd3 0%, #e3e8dd 100%);
  border: 1px solid rgba(147, 176, 145, 0.2);
}

.variant-sage:hover {
  background: linear-gradient(135deg, #dce2d6 0%, #e6eae0 100%);
}

/* Responsive design */
@media (max-width: 980px) {
  .online-ponuda {
    padding-top: 56px;
    margin-top: 32px;
  }

  .online-ponuda-header {
    margin-bottom: 48px;
  }

  .offer-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .offer-item-right .offer-media {
    order: 0;
  }

  .offer-media,
  .offer-media-frame,
  .offer-media-frame img,
  .offer-media-frame video {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  .offers-modern {
    padding: 40px 20px 60px;
  }

  .online-ponuda-header h2 {
    font-size: 1.75rem;
  }

  .online-ponuda-header p {
    font-size: 15px;
  }

  .offers-showcase {
    gap: 28px;
  }

  .offer-item {
    padding: 20px;
    border-radius: 20px;
  }

  .offer-content-card {
    padding: 28px 22px;
  }

  .offer-media,
  .offer-media-frame,
  .offer-media-frame img,
  .offer-media-frame video {
    min-height: 220px;
  }

  .offer-details {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .offer-cta {
    width: 100%;
    justify-content: center;
  }
}

/* PONUDE SECTION */

.ponude {
  padding: 80px 40px;
  background: linear-gradient(180deg, #f9f7f4 0%, #fefdfb 100%);
  max-width: 1200px;
  margin: 0 auto;
}

.ponude-intro {
  text-align: center;
  margin-bottom: 60px;
}

.ponude-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #d4af80;
  margin-bottom: 16px;
}

.ponude-intro h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.ponude-intro p {
  font-size: 17px;
  color: rgba(26, 26, 26, 0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.ponude-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.ponude-card {
  background: #fff;
  border: 1px solid rgba(212, 175, 128, 0.25);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ponude-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af80, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ponude-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 128, 0.5);
  box-shadow: 0 12px 40px rgba(212, 175, 128, 0.12);
}

.ponude-card:hover::before {
  transform: scaleX(1);
}

.ponude-image {
  display: block;
  margin: 0 auto 24px;
  max-height: 280px;
}

.ponude-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.ponude-card p {
  font-size: 15px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.7;
  margin: 0 auto 16px;
}

@media (max-width: 980px) {
  .ponude {
    padding: 60px 30px;
  }

  .ponude-intro h2 {
    font-size: 36px;
  }

  .ponude-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .ponude {
    padding: 40px 20px;
  }

  .ponude-intro h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .ponude-intro p {
    font-size: 15px;
  }

  .ponude-grid {
    grid-template-columns: 1fr;
  }

  .ponude-card {
    padding: 30px 24px;
  }

  .ponude-card h3 {
    font-size: 18px;
  }

  .ponude-icon {
    font-size: 40px;
  }
}

/* FULLSCREEN VIDEO */

.fullscreen-video {
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* WEDDING FEATURES */

.wedding-features {
  padding: 80px 40px;
  background: linear-gradient(180deg, #f9f7f4 0%, #fefdfb 100%);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.wedding-features h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

/* Full-width section containers */
.services-container,
.benefits-container,
.contact-container,
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* FAQ SECTION */

.faq-section {
  background: linear-gradient(180deg, #f9f7f4 0%, #fefdfb 100%);
  padding: 80px 40px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #d4af80;
  margin-bottom: 16px;
}

.faq-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.faq-header p {
  font-size: 17px;
  color: rgba(26, 26, 26, 0.75);
  font-weight: 300;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 32px;
}

.faq-item {
  background: white;
  border: 1px solid rgba(212, 175, 128, 0.25);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 128, 0.5);
  box-shadow: 0 8px 24px rgba(212, 175, 128, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #1f2937;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  background: rgba(212, 175, 128, 0.05);
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(212, 175, 128, 0.1);
  color: #d4af80;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  background: #d4af80;
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 700px;
  opacity: 1;
  padding: 0 24px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: rgba(31, 41, 55, 0.82);
  line-height: 1.8;
  margin: 0;
}

/* Responsive FAQ */
@media (max-width: 980px) {
  .faq-section {
    padding: 60px 30px;
  }

  .faq-header h2 {
    font-size: 36px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-footer-modern .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 40px 20px;
  }

  .faq-header h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .faq-header p {
    font-size: 15px;
  }

  .faq-question {
    padding: 20px;
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 20px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    margin-left: 12px;
  }
}

/* CONTACT */

.contact-modern {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 128, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.contact-modern h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.contact-modern > p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
}

.contact-box-modern {
  max-width: 500px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 128, 0.3);
  position: relative;
  z-index: 2;
}

.contact-box-modern p {
  font-size: 17px;
  margin-bottom: 25px;
  color: #e0e0e0;
  letter-spacing: 0.2px;
}

.contact-box-modern b {
  color: #d4af80;
  font-weight: 700;
}

.contact-box-modern p:last-child {
  margin-bottom: 0;
}

/* FOOTER */

.site-footer-modern {
  background: linear-gradient(180deg, #121212 0%, #0b0b0b 100%);
  color: #d7d7d7;
  padding: 48px 24px 32px;
  border-top: 1px solid rgba(212, 175, 128, 0.18);
}

.site-footer-modern .footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.site-footer-modern .footer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 128, 0.12);
  border-radius: 16px;
  padding: 18px 18px 14px;
}

.footer-brand-logo-small {
  max-width: 160px;
}

.site-footer-modern h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #f1d8b8;
  margin: 0 0 10px;
}

.site-footer-modern p,
.site-footer-modern a {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
  text-decoration: none;
}

.site-footer-modern a:hover {
  color: #f1d8b8;
}

.site-footer-modern .copyright {
  max-width: 1100px;
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #bcbcbc;
  font-size: 13px;
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,400&display=swap");
h2 {
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.card {
  position: relative;
}
.card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.6s;
  z-index: 0;
  background-color: #4f46e5;
}
.card:hover {
  box-shadow: 0.063rem 0.063rem 1.25rem 0.375rem rgba(0, 0, 0, 0.53);
}
.card:nth-child(1)::before {
  bottom: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
}
.card:nth-child(2)::before {
  bottom: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
}
.card:nth-child(3)::before {
  top: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
}
.card:nth-child(4)::before {
  top: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
}
.card p {
  transition: 0.8s;
}

.card:hover::before {
  clip-path: circle(110vw at 100% 100%);
}

.card:hover p {
  color: #fff;
}

@media screen and (min-width: 62.5rem) {
  .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
}

.card:nth-child(1) .circle {
  background: url("images/banner-1.png") no-repeat 50% 50% / cover;
  bottom: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
}

.card:nth-child(2) .circle {
  background: url("images/banner-2.png") no-repeat 50% 50% / cover;
  bottom: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
}

.card:nth-child(3) .circle {
  background: url("wedding-rings.png") no-repeat 50% 50% / cover;
  top: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
}

.card:nth-child(4) .circle {
  background: url("images/save-the-date.jpg") no-repeat 50% 50% / cover;
  top: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}
.template-gallery-section {
  background: #352017;
  padding: 120px 20px;
  overflow: hidden;
  max-width: 100%;
}

.template-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ======================================================
   HEADER
====================================================== */

.template-gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.template-gallery-subtitle {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.template-gallery-title {
  color: #f6e7d6;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.15;
  margin-bottom: 15px;
}

.template-gallery-description {
  max-width: 550px;
  margin: 0 auto;
  color: rgba(246, 231, 214, 0.6);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ======================================================
   DESKTOP GRID
====================================================== */

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

.template-gallery-card {
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
  outline: 2px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.template-gallery-card:hover {
  transform: translateY(-8px);
}

.template-gallery-card.selected {
  outline: 2.5px solid var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(225, 91, 36, 0.22);
}

/* ======================================================
   IMAGE AREA
====================================================== */

.template-gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e8e0d8;
}

.template-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.template-gallery-card:hover .template-gallery-image {
  transform: scale(1.06);
}

/* ======================================================
   OVERLAY
====================================================== */

.template-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(53, 32, 23, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.25s ease;
}

.template-gallery-card:hover .template-gallery-overlay {
  opacity: 1;
}

.template-gallery-preview-btn {
  display: flex;
  align-items: center;
  gap: 8px;

  background: #f6e7d6;
  color: #352017;

  padding: 12px 18px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;
}

.template-gallery-preview-btn svg {
  width: 16px;
  height: 16px;
}

/* ======================================================
   TAG
====================================================== */

.template-gallery-tag {
  position: absolute;
  top: 14px;
  left: 14px;

  padding: 7px 12px;
  border-radius: 999px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tag-orange {
  background: var(--orange);
  color: #fff;
}

.tag-brown {
  background: #352017;
  color: #f6e7d6;
}

/* ======================================================
   CHECK
====================================================== */

.template-gallery-selected-check {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: var(--orange);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
}

.template-gallery-selected-check svg {
  width: 16px;
  height: 16px;
}

/* ======================================================
   BODY
====================================================== */

.template-gallery-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.template-gallery-card.selected .template-gallery-body {
  background: rgba(246, 231, 214, 0.07);
}

.template-gallery-card:not(.selected) .template-gallery-body {
  background: rgba(255, 255, 255, 0.04);
}

.template-gallery-body h3 {
  color: #f6e7d6;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.template-gallery-body p {
  color: rgba(246, 231, 214, 0.55);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ======================================================
   PAGES
====================================================== */

.template-gallery-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.template-gallery-pages span {
  background: rgba(246, 231, 214, 0.08);
  color: rgba(246, 231, 214, 0.55);

  padding: 5px 10px;
  border-radius: 8px;

  font-size: 11px;
  font-weight: 500;
}

/* ======================================================
   BUTTON
====================================================== */

.template-gallery-select-btn {
  width: 100%;
  border: none;
  cursor: pointer;

  margin-top: 10px;
  padding: 13px;

  border-radius: 14px;

  font-size: 13px;
  font-weight: 700;

  transition: 0.3s ease;
}

.template-gallery-select-btn.selected {
  background: var(--orange);
  color: white;
}

.template-gallery-select-btn:not(.selected) {
  background: rgba(246, 231, 214, 0.08);
  color: rgba(246, 231, 214, 0.6);
}

.template-gallery-select-btn:hover {
  filter: brightness(1.08);
}

/* ======================================================
   MOBILE
====================================================== */

.template-gallery-mobile {
  display: none;
}

.template-gallery-mobile-card {
  overflow: hidden;
  border-radius: 24px;

  box-shadow:
    0 0 0 2px var(--orange),
    0 20px 50px rgba(225, 91, 36, 0.2);
}

.template-gallery-mobile-image-wrapper {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.template-gallery-mobile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-gallery-mobile-body {
  padding: 24px;
  background: rgba(246, 231, 214, 0.06);
}

.template-gallery-mobile-body h3 {
  color: #f6e7d6;
  margin-bottom: 10px;
}

.template-gallery-mobile-body p {
  color: rgba(246, 231, 214, 0.55);
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ======================================================
   NAV
====================================================== */

.template-gallery-mobile-nav {
  margin-top: 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.template-gallery-nav-btn {
  width: 44px;
  height: 44px;

  border: none;
  cursor: pointer;

  border-radius: 50%;

  background: rgba(246, 231, 214, 0.08);
  color: #f6e7d6;

  display: flex;
  align-items: center;
  justify-content: center;
}

.template-gallery-nav-btn svg {
  width: 20px;
  height: 20px;
}

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

.template-dot {
  width: 16px;
  height: 16px;

  border: none;
  cursor: pointer;

  border-radius: 999px;
  background: rgba(246, 231, 214, 0.25);

  transition: 0.3s ease;
}

.template-dot.active {
  width: 32px;
  background: var(--orange);
}

/* ======================================================
   FOOTER
====================================================== */

.template-gallery-footer {
  margin-top: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.template-gallery-footer p {
  color: rgba(246, 231, 214, 0.45);
  font-size: 0.95rem;
}

.template-gallery-order-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  border: none;
  cursor: pointer;

  padding: 16px 28px;
  border-radius: 14px;

  background: var(--orange);
  color: white;

  font-size: 14px;
  font-weight: 700;

  transition: 0.3s ease;
}

.template-gallery-order-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.template-gallery-order-btn svg {
  width: 18px;
  height: 18px;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 992px) {
  .template-gallery-grid {
    display: none;
  }

  .template-gallery-mobile {
    display: block;
  }

  .template-gallery-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-invite-container {
    margin-top: 40px;
  }
  .template-gallery-section {
    padding: 80px 20px;
  }

  .template-gallery-title {
    font-size: 2.4rem;
  }

  .template-gallery-order-btn {
    width: 100%;
    justify-content: center;
  }
}

.testimonials-showcase-section {
  background: #f6e7d6;
  padding: 120px 20px;
}

.testimonials-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-showcase-subtitle {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.testimonials-showcase-title {
  color: #352017;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.testimonials-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials-showcase-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;

  box-shadow: 0 4px 20px rgba(53, 32, 23, 0.07);

  transition: 0.3s ease;
}

.testimonials-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(53, 32, 23, 0.12);
}

.testimonials-showcase-quote {
  color: var(--orange);
  opacity: 0.55;
}

.testimonials-showcase-quote svg {
  width: 30px;
  height: 30px;
}

.testimonials-showcase-text {
  flex: 1;
  line-height: 1.9;
  color: rgba(53, 32, 23, 0.75);
  font-size: 0.95rem;
}

.testimonials-showcase-author {
  display: flex;
  align-items: center;
  gap: 14px;

  padding-top: 16px;
  border-top: 1px solid rgba(53, 32, 23, 0.08);
}

.testimonials-showcase-avatar {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #352017;
  color: #f6e7d6;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;
}

.testimonials-showcase-author h4 {
  color: #352017;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.testimonials-showcase-meta {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 11px;
}

.testimonials-showcase-meta span {
  color: rgba(53, 32, 23, 0.45);
}

.testimonials-showcase-meta .guests {
  color: var(--orange);
  font-weight: 700;
}

.testimonials-showcase-meta .dot {
  color: rgba(53, 32, 23, 0.2);
}

/* Stats */

.testimonials-showcase-stats {
  margin-top: 50px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 1px;

  background: rgba(53, 32, 23, 0.1);

  border-radius: 24px;
  overflow: hidden;
}

.testimonials-showcase-stat {
  background: white;

  text-align: center;

  padding: 34px 20px;
}

.testimonials-showcase-stat .value {
  color: #352017;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.testimonials-showcase-stat .label {
  color: rgba(53, 32, 23, 0.5);
  font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 992px) {
  .testimonials-showcase-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-showcase-stats {
    grid-template-columns: 1fr;
  }
}

.pricing-showcase-section {
  background: #fff;
  padding: 120px 20px;
  max-width: 100%;
}

.pricing-showcase-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */

.pricing-showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-showcase-subtitle {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.pricing-showcase-title {
  color: #352017;

  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 15px;
}

.pricing-showcase-description {
  max-width: 500px;
  margin: 0 auto;
  color: rgba(53, 32, 23, 0.55);
  line-height: 1.8;
}

/* Grid */

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

/* Card */

.pricing-showcase-card {
  position: relative;
  border: 2px solid var(--orange);
  border-radius: 24px;

  background: #f9f6f2;
  box-shadow: 0 2px 12px rgba(53, 32, 23, 0.06);
  transition: 0.3s ease;
}

.pricing-showcase-card:hover {
  transform: translateY(-6px);
}

.pricing-showcase-card-featured {
  border:none;
  background: #352017;
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(53, 32, 23, 0.25);
}

.pricing-showcase-card-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-showcase-content {
  padding: 38px 30px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-showcase-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  padding: 8px 18px;
  border-radius: 0 0 14px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Typography */

.pricing-showcase-tagline {
  color: rgba(53, 32, 23, 0.45);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pricing-showcase-name {
  color: #352017;

  font-size: 28px;
  margin-bottom: 18px;
}

.featured-text {
  color: #f6e7d6;
}

.featured-muted {
  color: rgba(246, 231, 214, 0.6);
}

.pricing-showcase-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.pricing-showcase-price.featured .price-value,
.pricing-showcase-price.featured .price-currency,
.pricing-showcase-price.featured .price-period {
  color: rgb(246, 231, 214);
}

.price-value {
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  color: #352017;
}

.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: rgba(53, 32, 23, 0.55);
}

.price-period {
  font-size: 12px;
  margin-bottom: 6px;
  color: rgba(53, 32, 23, 0.4);
}

/* Features */

.pricing-showcase-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  flex: 1;
}

.pricing-showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  line-height: 1.5;
  font-size: 14px;
  text-align: left;
}

.feature-check {
  color: var(--orange);
  font-weight: bold;
  flex-shrink: 0;
}

.pricing-showcase-card-featured .pricing-showcase-features li {
  color: rgba(246, 231, 214, 0.82);
}

.feature-disabled {
  opacity: 0.35;
  text-decoration: line-through;
}

.feature-disabled-light {
  color: #f6e7d6;
}

/* Buttons */

.pricing-showcase-button {
  border: none;
  border-radius: 14px;
  padding: 15px;
  cursor: pointer;
  background: rgba(53, 32, 23, 0.08);
  color: #352017;
  font-weight: 700;
  transition: 0.3s ease;
  margin-bottom: 64px;
}

.pricing-showcase-button:hover {
  filter: brightness(1.05);
}

.pricing-showcase-button-featured {
  background: var(--orange);
  color: white;
}

.pricing-showcase-button-premium {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.premium-icon {
  width: 16px;
  height: 16px;
}

/* Footer */

.pricing-showcase-footer {
  text-align: center;
  margin-top: 30px;
  color: rgba(53, 32, 23, 0.35);
  font-size: 12px;
}

/* Responsive */

@media (max-width: 992px) {
  .pricing-showcase-grid {
    grid-template-columns: 1fr;
  }

  .pricing-showcase-card-featured {
    transform: none;
  }

  .pricing-showcase-card-featured:hover {
    transform: translateY(-6px);
  }
}

/* //faq */

.faq-accordion-section {
  background: #f6e7d6;
  padding: 120px 20px;
}

.faq-accordion-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-accordion-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-accordion-subtitle {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.faq-accordion-title {
  color: #352017;

  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-accordion-item {
  background: white;
  border-radius: 22px;
  overflow: hidden;

  box-shadow: 0 1px 4px rgba(53, 32, 23, 0.06);

  transition: 0.25s ease;
}

.faq-accordion-item.active {
  background: #352017;
  box-shadow: 0 8px 32px rgba(53, 32, 23, 0.15);
}

.faq-accordion-trigger {
  width: 100%;
  border: none;
  background: transparent;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 24px 28px;

  text-align: left;
}

.faq-accordion-trigger span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #352017;
}

.faq-accordion-item.active .faq-accordion-trigger span {
  color: #f6e7d6;
}

.faq-accordion-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;

  border-radius: 50%;

  background: rgba(53, 32, 23, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.faq-accordion-item.active .faq-accordion-icon {
  background: var(--orange);
  color: white;
}

.faq-accordion-icon svg {
  width: 14px;
  height: 14px;

  position: absolute;
}

.icon-minus {
  display: none;
}

.faq-accordion-item.active .icon-minus {
  display: block;
}

.faq-accordion-item.active .icon-plus {
  display: none;
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 300px;
}

.faq-accordion-content p {
  padding: 0 28px 24px;
  text-align: left;
  color: rgba(246, 231, 214, 0.75);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-accordion-footer {
  text-align: center;
  margin-top: 40px;
  color: rgba(53, 32, 23, 0.45);
}

.faq-accordion-footer a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 300px;
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 500px;
}

/* ======================================
   CTA BAND
====================================== */

.footer-brand-cta {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  /* padding: 120px 20px; */
  text-align: center;
  max-width: 100%;
}

.footer-brand-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;

  background-image: radial-gradient(circle, white 1px, transparent 1px);

  background-size: 28px 28px;
}

.footer-brand-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.footer-brand-cta-title {
  color: white;

  font-size: clamp(2.6rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 25px;
}

.footer-brand-cta-title span {
  color: #f6e7d6;
}

.footer-brand-cta-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.footer-brand-cta-button {
  border: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 18px 34px;
  border-radius: 14px;

  background: #352017;
  color: #f6e7d6;

  font-size: 15px;
  font-weight: 700;

  transition: 0.3s ease;
  width: fit-content;
}

.footer-brand-cta-button:hover {
  transform: translateY(-3px);
}

.footer-brand-cta-button svg {
  width: 18px;
  height: 18px;
}

/* ======================================
   FOOTER
====================================== */

.footer-brand-main {
  background: #352017;
}

.footer-brand-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px 30px;
}

.footer-brand-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-logo {
  color: #f6e7d6;
  font-size: 1.8rem;
}

.footer-brand-description {
  color: rgba(246, 231, 214, 0.55);
  line-height: 1.8;
  max-width: 340px;
  font-size: 14px;
}
footer .footer-brand-description {
  text-align: left;
}

.footer-brand-heading {
  color: rgba(246, 231, 214, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
  text-align: left;
}

.footer-brand-column a {
  color: rgba(246, 231, 214, 0.55);
  text-decoration: none;
  transition: 0.25s ease;

  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-brand-column a:hover {
  color: #f6e7d6;
}

.footer-brand-column a svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ======================================
   BOTTOM BAR
====================================== */

.footer-brand-bottom {
  border-top: 1px solid rgba(246, 231, 214, 0.08);

  padding-top: 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  color: rgba(246, 231, 214, 0.25);
  font-size: 12px;
}

.footer-brand-legal {
  display: flex;
  gap: 24px;
}

.footer-brand-legal a {
  color: rgba(246, 231, 214, 0.25);
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-brand-legal a:hover {
  color: rgba(246, 231, 214, 0.75);
}

/* ======================================
   MOBILE
====================================== */

@media (max-width: 900px) {
  .footer-brand-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-brand-cta {
    padding: 90px 20px;
  }
}

.device-showcase-section {
  background: #352017;
  padding: 120px 20px;
  overflow: hidden;
  max-width: 100%;
}

.device-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ======================================================
   HEADER
====================================================== */

.device-showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.device-showcase-subtitle {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.device-showcase-title {
  color: #f6e7d6;

  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.15;
  margin-bottom: 15px;
}

.device-showcase-description {
  max-width: 560px;
  margin: 0 auto 35px;
  color: rgba(246, 231, 214, 0.55);
  line-height: 1.8;
}

/* ======================================================
   TOGGLE
====================================================== */

.device-showcase-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(246, 231, 214, 0.08);
}

.device-showcase-toggle-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  color: rgba(246, 231, 214, 0.5);
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
  margin-top: 0;
}

.device-showcase-toggle-btn svg {
  width: 16px;
  height: 16px;
}

.device-showcase-toggle-btn.active {
  background: #f6e7d6;
  color: #352017;
}

/* ======================================================
   VIEWS
====================================================== */

.device-showcase-desktop,
.device-showcase-mobile {
  transition: 0.4s ease;
}

.device-showcase-mobile {
  display: none;
}

.device-showcase-desktop.active,
.device-showcase-mobile.active {
  display: block;
}

/* ======================================================
   LAPTOP
====================================================== */

.device-showcase-laptop {
  position: relative;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;

  border-radius: 24px 24px 0 0;
  overflow: hidden;

  background: linear-gradient(160deg, #2a1a0e 0%, #1a0d05 100%);

  padding: 12px 12px 0;

  box-shadow:
    0 -2px 0 rgba(255, 255, 255, 0.06) inset,
    0 2px 0 rgba(0, 0, 0, 0.4);
}

.device-showcase-camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: rgba(255, 255, 255, 0.15);
}

/* ======================================================
   BROWSER
====================================================== */

.device-showcase-browser {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #1e1412;
}

.device-showcase-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 16px;

  background: #2d1c13;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.device-showcase-toolbar-dots {
  display: flex;
  gap: 6px;
}

.device-showcase-toolbar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.device-showcase-toolbar-dots .red {
  background: #ff5f57;
}

.device-showcase-toolbar-dots .yellow {
  background: #febc2e;
}

.device-showcase-toolbar-dots .green {
  background: #28c840;
}

.device-showcase-url {
  flex: 1;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 8px;

  background: rgba(255, 255, 255, 0.06);

  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.device-showcase-secure-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28c840;
}

/* ======================================================
   DESKTOP SCREEN
====================================================== */

.device-showcase-browser-screen {
  display: flex;
  height: 420px;
}

.device-showcase-hero-column {
  flex: 1;
  overflow: hidden;
}

.device-showcase-side-column {
  width: 45%;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.device-showcase-side-top,
.device-showcase-side-bottom {
  flex: 1;
  overflow: hidden;
}

.device-showcase-side-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.device-showcase-browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ======================================================
   BASE
====================================================== */

.device-showcase-base {
  position: relative;

  width: 100%;
  max-width: 950px;
  height: 16px;

  margin: 0 auto;

  background: linear-gradient(180deg, #1a0d05 0%, #251408 100%);

  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.device-showcase-base::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  width: 100px;
  height: 6px;

  border-radius: 999px 999px 0 0;

  background: #3a2010;

  opacity: 0.6;
}

.device-showcase-shadow {
  width: 60%;
  max-width: 320px;
  height: 10px;

  margin: 0 auto;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);

  border-radius: 0 0 20px 20px;
}

/* ======================================================
   PHONE
====================================================== */

.device-showcase-phone {
  position: relative;
  margin: 0 auto;
  width: 260px;

  border-radius: 44px;

  padding: 10px;

  background: linear-gradient(145deg, #2a1810, #160b04);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 32px 64px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.device-showcase-phone-button {
  position: absolute;
  background: #2a1810;
}

.device-showcase-phone-button.right {
  right: -4px;
  top: 90px;
  width: 4px;
  height: 34px;
  border-radius: 0 999px 999px 0;
}

.device-showcase-phone-button.left.top {
  left: -4px;
  top: 75px;
  width: 4px;
  height: 26px;
  border-radius: 999px 0 0 999px;
}

.device-showcase-phone-button.left.bottom {
  left: -4px;
  top: 115px;
  width: 4px;
  height: 26px;
  border-radius: 999px 0 0 999px;
}

.device-showcase-notch {
  position: absolute;

  top: 18px;
  left: 50%;

  transform: translateX(-50%);

  width: 82px;
  height: 22px;

  border-radius: 999px;

  background: #160b04;

  z-index: 20;
}

.device-showcase-phone-screen {
  overflow: hidden;
  border-radius: 36px;
  background: #f5ede4;
  height: 520px;
}

/* ======================================================
   STATUS BAR
====================================================== */

.device-showcase-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 18px;

  font-size: 10px;
  font-weight: 600;

  color: rgba(0, 0, 0, 0.5);
}

.device-showcase-status-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.device-showcase-signal {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.device-showcase-signal span {
  width: 2px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
}

.device-showcase-signal span:nth-child(1) {
  height: 4px;
}

.device-showcase-signal span:nth-child(2) {
  height: 6px;
}

.device-showcase-signal span:nth-child(3) {
  height: 8px;
}

.device-showcase-signal span:nth-child(4) {
  height: 10px;
}

.device-showcase-battery {
  width: 16px;
  height: 8px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

/* ======================================================
   MOBILE SLIDER
====================================================== */

.device-showcase-slider {
  height: calc(100% - 36px);
  overflow: hidden;
}

.device-showcase-slider-track {
  display: flex;
  width: 300%;
  height: 100%;

  transition: transform 0.5s ease;
}

.device-showcase-slide {
  width: 33.333%;
  height: 100%;
  flex-shrink: 0;
}

.device-showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ======================================================
   MOBILE INFO
====================================================== */

.device-showcase-mobile-info {
  margin-top: 28px;
  text-align: center;
}

.device-showcase-mobile-info p {
  color: rgba(246, 231, 214, 0.6);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.device-showcase-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.device-showcase-dot {
  width: 16px;
  height: 16px;

  border: none;
  cursor: pointer;

  border-radius: 999px;

  background: rgba(246, 231, 214, 0.2);

  transition: 0.3s ease;
}

.device-showcase-dot.active {
  width: 32px;
  background: var(--orange);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 768px) {
  .device-showcase-section {
    padding: 90px 20px;
  }

  .device-showcase-browser-screen {
    height: 260px;
  }

  .device-showcase-url {
    font-size: 9px;
  }

  .device-showcase-phone {
    width: 240px;
  }

  .device-showcase-phone-screen {
    height: 500px;
  }
}

.device-showcase-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.device-showcase-stage {
  position: relative;
}

.device-showcase-desktop,
.device-showcase-mobile {
  width: 100%;
}

.device-showcase-desktop {
  display: block;
}

.device-showcase-mobile {
  display: none;
}

.device-showcase-desktop.active {
  display: block;
}

.device-showcase-desktop:not(.active) {
  display: none;
}

.device-showcase-mobile.active {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.device-showcase-mobile:not(.active) {
  display: none;
}
.ourstory-showcase-section{

  max-width:100%;
}

.ourstory-showcase-section .testimonials-showcase-meta{
  display:flex;
justify-content:center;
}
.founder-story {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.founder-story h3 span{
  color: var(--orange);
}
.founder-story-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f6e7d6;
  color: #352017;
  font-weight: 600;
  margin-bottom: 20px;
  display: none;
}

.founder-story h3 {
  font-size: 2rem;
  line-height: 1.3;
  color: #352017;
  margin-bottom: 20px;
}

.founder-story p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.founder-story-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.founder-story-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6b8f71;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.founder-story-author h4 {
  margin: 0;
  color: #352017;
}

.founder-story-author span {
  color: #777;
  font-size: .75rem;
}

@media (max-width:768px){

  .founder-story{
    padding:28px 22px;
    margin-bottom:40px;
  }

  .founder-story h3{
    font-size:1.55rem;
  }

  .founder-story p{
    font-size:1rem;
    line-height:1.8;
  }

}