:root {
  --bg: #040d14;
  --bg-deep: #010609;
  --card: #0a1c27;
  --card-border: #123345;
  --text: #ffffff;
  --muted: #8b9ca7;
  --accent: #00f2da;
  --accent-soft: rgba(0, 240, 255, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --container: 1400px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Helvetica Neue", "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(134deg, #000 0%, #00141a 98.97%);;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.radial-bg{
  position: absolute;
  top: 838px;
  left: 0;
  width: 44vw;
  height: 212vw;
  border-radius: 212vw;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 144, 212, 0.40) 0%, rgba(0, 124, 182, 0.00) 100%);
  background-size: 88vw 212vw;
  background-position: right center;
}

.radial-bg-2{
  position: absolute;
  top: 554px;
  right: 0;
  width: 59vw;
  height: 118vw;
  border-radius: 118vw;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 198, 212, 0.20) 0%, rgba(0, 212, 177, 0.00) 100%);
  background-size: 118vw 118vw;
  background-position: left center;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(4, 13, 20, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  object-fit: contain;
}

.brand-logo-kivicube {
  height: 37px;
}

.brand-logo-kivi-ai {
  height: 37px;
}

.brand-divider {
  height: 32px;
  width: 1px;
  background-color: #fff;
}

.footer a:hover,
.socials a:hover {
  color: var(--accent);
}

.header-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-item {
  position: relative;
}

.header-link,
.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.header-link:hover,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  background: rgba(255, 255, 255, 0.05);
  color: #86e9ff;
}

.nav-dropdown > summary {
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 720px;
  padding: 16px;
  border: 1px solid rgba(134, 233, 255, 0.12);
  border-radius: 18px;
  background: rgba(3, 18, 29, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-panel-sm {
  min-width: 240px;
  grid-template-columns: 1fr;
}

.nav-group {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-group h3 {
  margin: 0 0 12px;
  color: #86e9ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links-grid {
  display: grid;
  gap: 8px;
}

.nav-links-grid-compact {
  grid-template-columns: 1fr;
}

.nav-panel a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.35;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-panel a:hover {
  background: rgba(0, 209, 209, 0.12);
  color: #00d1d1;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 15px;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(150, 150, 150, 0.5);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease,
    background-color 0.25s ease;
}

.action-link:hover,
.header-menu-toggle:hover {
  border-color: #00d1d1;
  color: #00d1d1;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00f2da 0%, #00b2a0 100%);
  color: #032029;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.action-button:hover {
  box-shadow: 0 12px 28px rgba(0, 242, 218, 0.22);
  transform: translateY(-1px);
}

.lang-switcher {
  position: relative;
}

.lang-button {
  min-width: 60px;
  padding: 8px 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 9999px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
}

.lang-button:hover,
.lang-button[aria-expanded="true"] {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  min-width: 140px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 10, 14, 0.96);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.lang-switcher.open .lang-menu {
  display: block;
}

.lang-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.lang-menu a:hover,
.lang-menu a.is-active {
  background: rgba(0, 242, 218, 0.12);
  color: var(--accent);
}

.header-menu-toggle {
  display: none;
  flex-direction: column;
  padding: 10px;
  gap: 5px;
}

.header-menu-toggle span {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #041016;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.22);
}

.button-secondary {
  border: 1.5px solid rgba(0, 240, 255, 0.7);
  background: rgba(17, 17, 34, 0.8);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.12);
}

.button-secondary:hover,
.button-primary:hover,
.button-glow:hover {
  box-shadow: 0 0 32px rgba(0, 240, 255, 0.38);
}

.button-glow {
  position: relative;
  background: linear-gradient(135deg, var(--accent), #46a8ff);
  color: #041016;
  box-shadow: 0 24px 40px rgba(19, 135, 183, 0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  padding: 10px;
  cursor: pointer;
  gap: 5px;
  background-color: transparent;
  border: 0;
  outline: none;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  height: 561px;
  padding: 80px 0 0;
  background: var(--bg-deep);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.hero-media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/get-featured/images/hero-bg.jpg?v=1.0") right center/cover
    no-repeat;
}

.grid-floor,
.resource-floor {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.grid-floor {
  bottom: 0;
  height: 260px;
  background-image: linear-gradient(
      to right,
      rgba(0, 240, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(to top, rgba(0, 240, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(520px) rotateX(64deg);
  transform-origin: bottom;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 1200px;
  padding: 0 30px;
  box-sizing: border-box;
  width: 100%;
}

.hero-copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 30px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-family: "Helvetica Neue";
  font-size: 46px;
  line-height: 56px;
  font-weight: 700;
  background: linear-gradient(270deg, #00ffe1 0%, #b2ffe7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  margin-top: 0;
}

.section h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 700;
  background: linear-gradient(270deg, #00ffc8 0%, #b2ffe7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Helvetica Neue";
  text-align: center;
}

.section-desc,
.resource-card p,
.submit-card p,
.footer a,
.footer li {
  color: var(--muted);
}

.benefit-card p {
  color: #a0aec0;
}

.hero-desc {
  color: #003a3a;
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  margin: 0 0 40px;
  max-width: 530px;
  min-height: 108px;
}

.hero-actions .button-secondary {
  border-radius: 1000px;
  background: linear-gradient(
    89deg,
    #72307e -5.08%,
    #000 32.91%,
    #4778cd 131.86%
  );
  border: 0;
  box-shadow: none;
  padding: 12px 40px;
  color: #49ffd4;
  font-family: "Helvetica Neue";
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.section {
  position: relative;
  padding: 80px 0;
  scroll-margin-top: 20px;
}

.featured {
  overflow: hidden;
}

.section-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80vw, 1000px);
  height: min(80vw, 1000px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.05);
  filter: blur(120px);
}

.experience-grid,
.benefit-grid,
.submit-grid,
.resource-grid {
  display: grid;
  gap: 28px;
}

.experience-grid {
  margin-top: 60px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-card,
.benefit-card,
.submit-card,
.resource-card {
  position: relative;
}

.experience-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: inherit;
}

.experience-media {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #021018;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.experience-card:hover .experience-media {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15);
}

.experience-card h3,
.benefit-card h3,
.submit-card h3,
.resource-card h3 {
  margin: 0;
  font-size: 22px;
}

.experience-card h3 {
  text-align: center;
  transition: color 0.25s ease;
  padding-bottom: 32px;
}

.experience-card:hover h3 {
  color: var(--accent);
}

.benefits {
  
}

.benefit-grid {
  margin-top: 60px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card,
.resource-card {
  padding: 34px 30px;
  background: rgba(10, 28, 39, 0.9);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  transition: transform 0.25s ease, border-color 0.25s ease,
    background-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card:hover,
.resource-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.26);
  background: #0c2230;
}

.icon-badge,
.submit-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.icon-badge svg,
.submit-icon svg {
  width: 32px;
  height: 32px;
}

.icon-badge {
  border-radius: 16px;
  background: linear-gradient(135deg, #00f2da 0%, #00b2a0 100%),
    rgba(0, 0, 0, 0);
}

.benefit-card p,
.resource-card p,
.submit-card p {
  margin: 14px 0 0;
  line-height: 1.7;
  font-size: 15px;
}

.section-cta, .submit-action{
  margin-top: 54px;
  text-align: center;
}

.benefits .button-primary {
  color: #000;
  text-align: center;
  font-family: "Helvetica Neue";
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  width: 323px;
  box-sizing: border-box;
  box-shadow: 0 4px 50px 0 rgba(98, 184, 246, 0.5);
}

.section-cta p {
  margin: 0 0 48px;
  font-size: 22px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
}

.creation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  margin-top: 40px;
}

.creation-visual {
  position: relative;
  overflow: hidden;
}

.creation-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.creation-copy h2 {
  text-align: left;
}

.submit-action .button-glow{
  margin-top: 54px;
  width: 332px;
  height: 54px;
  border-radius: 1000px;
  box-shadow: 0 4px 50px 0 rgba(98, 184, 246, 0.50);
  font-size: 20px;
}

.point-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.point-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 20px;
  line-height: 1.6;
  color: #d9e4e9;
}

.point-check {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.point-check svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.submit {
  
}

.section-desc {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 22px;
  line-height: 39px;
  font-family: "Helvetica Neue";
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.submit-grid {
  margin-top: 64px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.submit-card {
  text-align: center;
  padding: 22px 14px;
}

.submit-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 2px solid #3affd2;
}

.submit-icon svg {
  width: 44px;
  height: 44px;
}

.resources {
  overflow: hidden;
  position: relative;
}

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

.resource-bg{
  position: absolute;
  width: 1364px;
  height: 262px;
  bottom: -62px;
  left: 0;
  object-fit: cover;
  background: url("/get-featured/images/resource-bg.png") center center / contain no-repeat;
  mix-blend-mode: exclusion;
}

.resource-grid {
  margin-top: 60px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card {
  backdrop-filter: blur(8px);
}

.footer-area {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  padding: 0 64px;
}

.footer {
  width: 100%;
  max-width: 80rem;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}

.footer h4 {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 12px;
}

.footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00d1d1;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 20px;
  height: 20px;
  transition: color 0.3s ease;
}

.socials a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (min-width: 1563px) {
  .hero {
    aspect-ratio: 25 / 9;
    height: auto;
  }
}

@media (min-width: 2560px) {
  .hero {
    aspect-ratio: initial;
    height: 919px;
  }
}

@media (min-width: 1100px) {
  .product-header-item .nav-panel {
    grid-template-columns: 3fr 1fr 1fr;
    min-width: 860px;
    left: -110px;
  }

  .nav-group-capabilities .nav-links-grid {
    grid-template-columns: 1fr 1fr 1.5fr;
  }
}

@media (max-width: 1100px) {
  .experience-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-area {
    padding-right: 32px;
    padding-left: 32px;
  }

  .creation-layout,
  .resource-grid,
  .submit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .creation-copy h2 {
    text-align: center;
  }
}

@media (max-width: 968px) {
  .header-menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-inner {
    flex-wrap: wrap;
  }

  .header-nav {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .header-menu {
    display: none;
    scrollbar-width: none;
  }

  .header-menu::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav.open .header-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(134, 233, 255, 0.12);
    border-radius: 18px;
    background: rgba(3, 18, 29, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    justify-content: flex-start;
  }

  .header-nav.open .header-actions {
    margin-left: 0;
  }

  .header-nav.open .header-item {
    width: 100%;
  }

  .header-nav.open .header-link,
  .header-nav.open .nav-dropdown > summary {
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
  }

  .header-nav.open .nav-panel,
  .header-nav.open .nav-panel-sm {
    position: static;
    min-width: 0;
    margin-top: 10px;
    grid-template-columns: 1fr;
  }

  .header-nav.open .nav-links-grid-compact {
    grid-template-columns: 1fr;
  }

  .hero {
    flex-direction: column;
    height: auto;
    padding: 120px 0 0;
  }

  .hero-content {
    justify-content: center;
  }

  .hero-media {
    position: static;
    order: 1;
    background-image: url("/get-featured/images/hero-bg-mp.jpg");
    aspect-ratio: 16 / 11;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
    flex-grow: 1;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    min-height: initial;
  }
}

@media (max-width: 768px) {
  .footer-area {
    padding-right: 24px;
    padding-left: 24px;
  }

  .section h2{
    font-size: 26px;
  }

  .brand-logo-kivicube,
  .brand-logo-kivi-ai {
    height: 30px;
  }

  .brand-divider {
    height: 24px;
  }

  .top-shell {
    flex-wrap: wrap;
  }

  .header-menu-toggle {
    display: inline-flex;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .header-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    scrollbar-width: none;
  }

  .header-menu::-webkit-scrollbar {
    display: none;
  }

  .header-nav.open {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px;
    max-height: 70vh;
    overflow-y: auto;
    border: 1px solid rgba(134, 233, 255, 0.12);
    border-radius: 18px;
    background: rgba(3, 18, 29, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .header-menu,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-nav.open .header-menu {
    width: 100%;
    position: static;
    border: 0;
    padding: 0;
  }

  .header-actions {
    display: none;
    padding: 0 14px;
  }

  .header-nav.open .header-actions {
    display: flex;
    margin-left: 0;
  }

  .header-link,
  .nav-dropdown > summary,
  .action-link,
  .action-button {
    justify-content: space-between;
    min-height: 44px;
  }

  .header-link,
  .nav-dropdown > summary {
    width: 100%;
  }

  .action-link,
  .action-button {
    width: fit-content;
    min-height: 36px;
  }

  .header-nav.open .header-item {
    width: 100%;
  }

  .header-nav.open .nav-panel,
  .header-nav.open .nav-panel-sm {
    position: static;
    min-width: 0;
    margin-top: 10px;
    grid-template-columns: 1fr;
  }

  .header-nav.open .nav-links-grid-compact {
    grid-template-columns: 1fr;
  }

  .header-menu-toggle span {
    width: 16px;
  }

  .lang-button {
    min-width: 50px;
    padding: 8px;
  }

  .hero{
    padding-top: 80px;
  }

  .hero-content {
    min-height: auto;
  }

  .hero h1 {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 22px;
    max-width: 300px;
    font-weight: normal;
    max-width: 289px;
    margin: 0 auto 40px;
  }

  .hero-actions .button-secondary {
    font-size: 13px;
    padding: 8px 28px;
    line-height: 21px;
    min-height: initial;
  }

  .section-desc{
    font-size: 17px;
    line-height: 24px;
  }

  .point-check{
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .point-check svg{
    width: 16px;
    height: 16px;
  }

  .point-list li {
    font-size: 14px;
    line-height: 17px;
    align-items: center;
    gap: 10px;
  }

  .benefits .button-primary, .submit-action .button-glow {
    width: 240px;
    height: 46px;
  }

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

  .experience-grid{
    gap: 16px;
  }

  .experience-card h3{
    font-size: 16px;
  }

  .experience-media{
    border-radius: 12px;
  }

  .section {
    padding: 40px 0;
    scroll-margin-top: 60px;
  }

  .submit-action{
    margin-top: 0;
  }
  .creation-layout{
    gap: 32px;
  }
  .section-cta{
    margin-top: 36px;
  }
  .section-cta p {
    margin-bottom: 32px;
  }
  .submit-action .button-glow{
    margin-top: 36px;
  }

  .submit-grid{
    margin-top: 32px;
    gap: 8px;
  }

  .benefit-card, .resource-card{
    padding: 20px 30px;
  }

  .icon-badge{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 6px;
  }

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

  .submit-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 6px;
  }

  .submit-icon svg{
    width: 24px;
    height: 24px;
  }

  .experience-card h3, .benefit-card h3, .submit-card h3, .resource-card h3{
    font-size: 14px;
    line-height: 17px;
  }
  .benefit-card p, .resource-card p, .submit-card p{
    font-size: 14px;
    line-height: 17px;
    margin: 6px 0;
  }

  .submit-card h3{
    font-weight: 400;
    max-width: 260px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .nav-inner{
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    gap: 10px;
  }
  .brand{
    gap: 10px;
  }
}
