:root {
  --bg: #f5f5f5;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-soft: #e8e8e3;
  --card: #d8d9d2;
  --ink: #0f1728;
  --text: #1e2734;
  --muted: #4e5966;
  --line: #d2d4ce;
  --line-strong: #bfc3bb;
  --accent: #2152d6;
  --accent-soft: #e6eeff;

  /* Frequently used colors */
  --text-light: #5c625d;
  --text-muted-alt: #4f5962;
  --text-secondary: #555a5e;
  --text-dark: #1f1f1c;
  --white: #ffffff;
  --dark-bg: #1a1a1a;
  --surface-dark: #1e1e1a;

  /* Spacing */
  --gap-nav: 2rem;
  --gap-card: 16px;
  --pad-sm: 7px 12px;
  --pad-md: 22px;

  /* Sizing */
  --radius-lg: 0px;
  --radius-md: 0px;
  --radius-sm: 0px;
  --content-width: 1120px;
  --content-gutter: 28px;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('./fonts/RobotoCondensed-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('./fonts/RobotoCondensed-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hubot-Sans';
  src: url('./fonts/HubotSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi Bold';
  src: url('./fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Satoshi", "Roboto Condensed", "Arial Narrow", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  z-index: 0;
  background-image: radial-gradient(#000 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.section,
.hero {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.section {
  display: flex;
  flex-direction: column;
  padding-left: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  padding-right: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-top: 1px solid var(--line);
}

.section>* {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.hero-content {
  width: min(var(--content-width), calc(100% - (var(--content-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

.section:nth-of-type(even) {
  background: var(--bg);
}

.section:nth-of-type(odd) {
  background: var(--bg-2);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.008em;
  font-family: "Satoshi", "Hubot-Sans", "Inter", Arial, sans-serif;
}

h1 {
  font-size: clamp(2.05rem, 4.6vw, 4.1rem);
  line-height: 1.02;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 28px;
}

h3 {
  font-size: clamp(0.98rem, 1.3vw, 1.25rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
}

p,
li {
  margin: 0;
  font-size: clamp(0.98rem, 1vw, 1.14rem);
  line-height: 1.66;
  color: var(--muted);
  font-weight: 400;
}

p+p {
  margin-top: 12px;
}

strong {
  color: var(--text);
  font-weight: 700;
}

ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.brandline {
  order: 999;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  align-self: flex-start;
  padding: var(--pad-sm);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: #60708b;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  border-top: 3px solid var(--accent);
}

.brandline::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: url("./Assets/icon1.svg") center / contain no-repeat;
}

.section-eyebrow {
  margin-bottom: 18px;
  color: #2d2f2b;
  font-size: 0.98rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero {
  padding: 0px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(95deg, rgba(241, 241, 236, 0.9) 0%, rgba(235, 235, 229, 0.84) 40%, rgba(226, 226, 221, 0.12) 100%),
    url("./Assets/Benjamin Mahn Business Navigator.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
}

.hero-tag,
.hero-brandpill {
  display: inline-block;
  padding: var(--pad-sm);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 0;
  color: var(--text-light);
}

.hero-tag {
  margin-bottom: 18px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 15ch;
  margin-bottom: 26px;
}

.hero .lead {
  max-width: 58ch;
  font-size: clamp(1rem, 1.28vw, 1.36rem);
  color: #4d5761;
  font-weight: 400;
}

.hero .lead strong {
  color: #242b32;
  font-weight: 700;
}

.hero-brandpill {
  margin-top: 16px;
  font-size: 0.9rem;
}

.grid {
  display: grid;
  gap: var(--gap-card);
  margin-top: 30px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.card,
.pricing-card,
.dark-card,
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--pad-md);
}

.problem-section .card {
  
  border-top: 3px solid var(--accent);
}

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #c8cac1;
  border: 1px solid #c8cac1;
  color: #000;
}

.icon-badge svg {
  width: 25px;
  height: 25px;
}

.dark-card {
  background: var(--card);
  border-color: var(--line);
}

.dark-card h3,
.dark-card li {
  color: var(--text);
}

.solution-section .dark-card {
  background: var(--surface-dark);
  border-color: var(--surface-dark);
}

.solution-section .dark-card h3,
.solution-section .dark-card li,
.solution-section .dark-card p {
  color: var(--white);
}

.stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.stat {
  text-align: center;
  background: var(--surface-soft);
  border-top: 3px solid var(--accent);
}

.num {
  font-size: clamp(2.1rem, 3.7vw, 3.3rem);
  line-height: 1;
  font-weight: 800;
  color: #2a3b5f;
  margin-bottom: 10px;
}

.label {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #3e5276;
  font-weight: 700;
}

blockquote {
  margin: 32px 0 0;
  padding: 0 0 0 14px;
  border-left: 3px solid #8aa5da;
  color: #4a5c7c;
}

.section-divider {
  width: 100%;
  height: 1px;
  margin-top: 30px;
  background: var(--line-strong);
}

.quote {
  font-style: italic;
  color: #4f5f7a;
}

.result {
  margin-top: 12px;
  color: #2e3f5f;
  font-weight: 600;
}

.result::before {
  content: "→ ";
}

.strategy-section h2 {
  margin-bottom: 34px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 30px;
}

.strategy-column {
  text-align: left;
}

.strategy-column h3 {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
}

.strategy-column .quote {
  margin: 0 0 16px;
  font-size: clamp(1rem, 1.08vw, 1.18rem);
}

.strategy-column ul {
  margin: 0;
  padding-left: 1.15em;
}

.strategy-column li+li {
  margin-top: 6px;
}

.strategy-column .result {
  margin: 14px 0 0;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
}

.strategy-visual {
  width: min(300px, 100%);
  margin: 0 auto 20px;
  border-radius: 20%;
  background-size: cover;
  background-position: center;
}

.growth-efficiency-section .growth {
  background:
    radial-gradient(circle at 68% 76%, rgba(255, 241, 198, 0.75), transparent 20%),
    linear-gradient(180deg, rgba(95, 176, 219, 0.18), rgba(95, 176, 219, 0.18)),
    linear-gradient(180deg, #74bfdc 0%, #9fd2e4 58%, #d4d2cd 58%, #d4d2cd 100%);
  box-shadow: inset 0 -80px 120px rgba(233, 222, 201, 0.34);
}

.growth-efficiency-section .efficiency {
  background:
    radial-gradient(circle at 50% 8%, rgba(240, 221, 195, 0.95), transparent 28%),
    linear-gradient(180deg, #6d6964 0%, #3e3d3b 44%, #111111 100%);
  box-shadow: inset 0 -90px 120px rgba(10, 10, 10, 0.5);
}

.digital-innovation-section .digitization {
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.28), transparent 18%),
    linear-gradient(135deg, #7ea7d8 0%, #8db8d7 40%, #d1d7d8 100%);
  box-shadow: inset 0 -80px 120px rgba(142, 164, 187, 0.25);
}

.digital-innovation-section .innovation {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 236, 196, 0.95), transparent 24%),
    linear-gradient(180deg, #7d7368 0%, #46403c 50%, #1e1c1c 100%);
  box-shadow: inset 0 -90px 120px rgba(22, 20, 20, 0.4);
}

.security-collaboration-section .security {
  background:
    radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.3), transparent 18%),
    linear-gradient(135deg, #90b0c1 0%, #a7bcc6 38%, #d6d9d6 100%);
  box-shadow: inset 0 -80px 120px rgba(116, 137, 149, 0.24);
}

.security-collaboration-section .collaboration {
  background:
    radial-gradient(circle at 50% 10%, rgba(243, 223, 193, 0.95), transparent 26%),
    linear-gradient(180deg, #6d6a66 0%, #474542 50%, #161616 100%);
  box-shadow: inset 0 -90px 120px rgba(16, 16, 16, 0.42);
}

.path-section {
  overflow: hidden;
}

.path-section>p {
  max-width: 78ch;
  margin: 34px 0 0;
}

.process-graphic {
  position: relative;
  min-height: 380px;
  margin-top: 14px;
}

.process-copy {
  position: absolute;
  max-width: 250px;
}

.process-copy h3 {
  margin-bottom: 6px;
  color: #111318;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.process-copy p {
  color: var(--text-muted-alt);
  line-height: 1.45;
}

.process-copy.roadmap {
  left: 7%;
  top: 10%;
  text-align: center;
}

.process-copy.synchron {
  right: 13%;
  top: 8%;
}

.process-copy.understanding {
  left: 14%;
  bottom: 4%;
  text-align: center;
}

.process-copy.enablement {
  right: 7%;
  bottom: 5%;
}

.process-diamonds {
  position: absolute;
  left: 50%;
  top: 51%;
  width: 384px;
  height: 248px;
  transform: translate(-50%, -50%);
}

.process-diamond {
  position: absolute;
  width: 102px;
  height: 102px;
  transform: rotate(45deg);
}

.process-diamond.dark {
  left: 14px;
  top: 28px;
  background: #545248;
}

.process-diamond.mid {
  left: 88px;
  top: 102px;
  background: #67685a;
}

.process-diamond.light {
  left: 162px;
  top: 28px;
  background: #9a9988;
}

.process-diamond.olive {
  left: 236px;
  top: 102px;
  background: #848372;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.talk-section .grid {
  margin-top: 20px;
  gap: 18px;
}

.talk-section .contact-card {
  background: var(--card);
  border-color: transparent;
  min-height: 220px;
  justify-content: flex-start;
  border-top: 3px solid var(--accent);
}

.talk-section .contact-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
}

.talk-section .contact-card p {
  color: var(--text-dark);
}

.talk-section blockquote {
  margin-top: 20px;
  max-width: 80ch;
  border-left: 2px solid #222;
  color: #4a5c7c;
}

.pricing-section h2 {
  font-size: clamp(2rem, 4.7vw, 4rem);
  line-height: 1.04;
}


.pricing-section .pricing-card {
  background: var(--white);
  border: 2px solid var(--line-strong);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-section .pricing-card h3 {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
}

.pricing-section .pricing-card:nth-child(2) {
  transform: scale(1.05);
  border: 2px solid var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 8px 24px rgba(33, 82, 214, 0.15);
  position: relative;
  z-index: 2;
}

.pricing-section .pricing-card:nth-child(2) h3 {
  color: var(--accent);
}

.pricing-section .pricing-card:nth-child(2)::before {
  content: "MEIST GEBUCHT";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.pricing-section .mini-label {
  display: block;
  margin-top: 12px;
  margin-bottom: 8px;
  color: #4b5259;
  font-size: 0.98rem;
  font-weight: 700;
}

.price {
  margin-top: auto;
  margin-bottom: 14px;
  color: #1f3152;
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}



.contact-header {
  display: flex;
  justify-content: flex-end;
  gap: var(--gap-nav);
  align-items: center;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 0;
}

.contact-header a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-header a:hover {
  color: #00d9ff;
}



/* Mobile Navigation Hamburger */
.hero-nav-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--gap-nav);

  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  position: relative;

  background-color: rgba(255, 255, 255, 0.9);
  opacity: 1;

}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 24px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.hero-nav {
  display: flex;
  justify-content: flex-end;
  gap: var(--gap-nav);
  align-items: center;
}

.hero-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  /* text-transform: uppercase; */
  transition: color 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Satoshi", "Hubot-Sans", "Inter", Arial, sans-serif;
}

.hero-nav a::before {
  content: "";
  font-size: 1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateX(-8px);
  font-weight: 400;
}

.hero-nav a:hover {
  color: var(--accent);
}

.hero-nav a:hover::before {
  content: "›";
  opacity: 1;
  transform: translateX(0);
}

/* Mobile: Show hamburger, hide nav links */
@media (max-width: 768px) {
  .hero-nav-wrapper {
    flex-wrap: wrap;
    gap: 0;
    padding: 1rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .hero-nav {
    order: 3;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    z-index: 102;
  }

  .hero-nav.active {
    max-height: 350px;
    padding: 1rem 0;
  }

  .hero-nav a {
    padding: 12px 1.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .hero-nav a:last-child {
    border-bottom: none;
  }

  .hero-nav a:hover {
    background-color: var(--surface-soft);
    opacity: 1;
  }

  /* Hamburger animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }


}

@media (max-width: 480px) {
  .hero-nav-wrapper {
    padding: 1rem;
  }

  .hero-nav a {
    padding: 10px 1rem;
    font-size: 0.95rem;
  }

  .nav-toggle {
    width: 28px;
    height: 22px;
  }
}

.strategies-section h2 {
  margin-bottom: 12px;
}

.strategies-section>p {
  /* max-width: 78ch; */
  margin-bottom: 30px;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.strategy-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.strategy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent);
}

.strategy-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.growth-icon {
  background: #7ea7d8;
}

.efficiency-icon {
  background: #6d6964;
}

.digitalization-icon {
  background: #7ea7d8;
}

.innovation-icon {
  background: #7d7368;
}

.security-icon {
  background: #90b0c1;
}

.collaboration-icon {
  background: #6d6a66;
}

.strategy-card h3 {
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.strategy-quote {
  font-style: italic;
  color: #4f5f7a;
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.strategy-card ul {
  margin: 0 0 16px;
  padding-left: 1.15em;
  flex-grow: 1;
}

.strategy-card li {
  font-size: 0.9rem;
  margin-top: 6px;
}

.strategy-card li:first-child {
  margin-top: 0;
}

.strategy-result {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-strong);
  color: #2e3f5f;
  font-weight: 600;
  font-size: 0.9rem;
}

.strategy-result::before {
  content: "→ ";
}

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

.pricing-section .pricing-grid {
  align-items: stretch;
  gap: 24px;
}

.pricing-section .pricing-card {
  background: var(--white);
  border: 2px solid var(--line-strong);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-section .pricing-card:nth-child(2) {
  transform: scale(1.05);
  border: 2px solid var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 8px 24px rgba(33, 82, 214, 0.15);
  position: relative;
  z-index: 2;
}

.pricing-section .pricing-card:nth-child(2)::before {
  content: "BELIEBT";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.pricing-section .pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pricing-section .pricing-card h3 {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
}

.pricing-section .pricing-card:nth-child(2) h3 {
  color: var(--accent);
}

/* Pricing Cards - Collapsible Details */
.pricing-toggle {
  display: none;
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  margin: 12px 0;
  transition: border-color 0.2s;
}

.pricing-toggle:hover {
  border-bottom-color: var(--accent);
}

.pricing-toggle .mini-label {
  display: inline-block;
  margin: 0;
  font-size: 0.85rem;
}

.toggle-icon {
  float: right;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.pricing-details {
  max-height: 9999px;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 1;
  margin-bottom: 12px;
}

/* Desktop: Always show details */
@media (min-width: 769px) {
  .pricing-toggle {
    display: none !important;
  }

  .pricing-details {
    max-height: 9999px;
    opacity: 1;
    margin-bottom: 12px;
  }

  .mini-label {
    display: block;
    margin-top: 12px;
    margin-bottom: 8px;
    color: #4b5259;
    font-size: 0.98rem;
    font-weight: 700;
  }
}

/* Mobile: Show toggle button, details start collapsed */
@media (max-width: 768px) {
  .pricing-toggle {
    display: block;
  }

  .pricing-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
  }

  .pricing-toggle[aria-expanded="true"] {
    border-bottom-color: var(--accent);
  }

  .pricing-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(45deg);
  }

  .pricing-toggle[aria-expanded="true"]+.pricing-details {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 12px;
  }
}

/* Contact Section Redesign */
.contact-section h2 {
  margin-bottom: 54px;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contact-photo-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-photo {
  width: min(280px, 85%);
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.contact-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  gap: 16px;
}

.contact-name {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.contact-tagline {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
}

.btn-primary {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 36px;
  background-color: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.2s ease;
  border: 2px solid var(--accent);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(33, 82, 214, 0.2);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.contact-quick-info {
  display: flex;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.contact-quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-quick-link:hover {
  color: var(--accent);
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 680px;
  margin-top: 16px;
}

.contact-info-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 4px;
}

.contact-info-card h3 {
  margin: 0 0 12px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted-alt);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-info-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
}

.contact-info-card p+p {
  margin-top: 2px;
}

.contact-info-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-info-card a:hover {
  color: var(--text-dark);
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-section h2 {
    margin-bottom: 36px;
  }

  .contact-container {
    gap: 28px;
  }

  .contact-photo {
    width: min(240px, 90%);
  }

  .contact-name {
    font-size: 1.6rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .contact-quick-info {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .contact-section h2 {
    margin-bottom: 28px;
  }

  .contact-photo {
    width: min(200px, 85%);
  }

  .contact-name {
    font-size: 1.4rem;
  }

  .contact-intro {
    font-size: 0.95rem;
  }

  .btn-primary {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .contact-quick-link {
    font-size: 0.85rem;
  }
}

html {
  scroll-behavior: smooth;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* optional max width */
    margin: auto;
    overflow: hidden;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
  }

  .video-container video {
    width: 100%;
    height: auto;
    display: block;
    
  }

  /* Footer & Back to Top */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 28px var(--content-gutter);
  text-align: center;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}

.back-to-top:hover {
  background-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(33, 82, 214, 0.3);
}

.back-to-top-icon {
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 480px) {
  .footer-content {
    flex-direction: column;
    gap: 16px;
  }

  .footer-content p {
    font-size: 0.85rem;
  }
}