  :root {
    /* Brand Colors (Refined Apple-style) */
    --brand: #FF9500;
    --brand-700: #E68900;
    --brand-100: #FFF8F0;

    /* Apple Grays */
    --gray-900: #1d1d1f;
    --gray-600: #86868b;
    --gray-100: #f5f5f7;

    /* Legacy compatibility */
    --bg: #ffffff;
    --paper: #ffffff;
    --text: #1d1d1f;
    --muted: #86868b;
    --border: rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, .8);
    --radius: 12px;

    /* Spacing System */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 80px;

    /* Shadows (Apple-style subtle) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow: var(--shadow-md);

    /* Animations (Apple easing) */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
  }

  ::-webkit-scrollbar {
    width: 12px;
  }

  ::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand), #FFB84D);
    border-radius: 10px;
    border: 3px solid #f0f0f0;
    transition: background 0.3s var(--ease);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFB84D, #FFC973);
  }

  html {
    scrollbar-width: thin;
    scrollbar-color: var(--brand) #f0f0f0;
  }

  * {
    box-sizing: border-box
  }

  html,
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.47;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

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

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

  .container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
  }

  .progress {
    position: fixed;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), #FFB84D);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1000;
    transition: transform 0.3s var(--ease);
  }

  #pre {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: #fff;
    z-index: 1001
  }

  .spin {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--brand), #FFB84D);
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow-md);
    animation: bump .8s var(--ease) infinite alternate;
  }

  @keyframes bump {
    to {
      transform: translateY(-6px)
    }
  }

  .top {
    background: var(--brand-100);
    color: #92400e;
    font-size: .9rem
  }

  .top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .45rem
  }

  .pill {
    display: inline-flex;
    white-space: nowrap;
    gap: 8px;
    align-items: center;
    padding: .22rem .6rem;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    background: #fff
  }

  header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .9rem 0
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800
  }

  .badge {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), #FFB84D);
    color: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease);
  }

  .badge:hover {
    transform: scale(1.05);
  }

  .navlinks {
    display: flex;
    gap: 26px;
    align-items: center
  }

  .navlinks a {
    font-weight: 600;
    color: #1f2937;
    position: relative
  }

  .navlinks a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.3s var(--ease);
  }

  .navlinks a:hover:after {
    width: 100%
  }

  .cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
  }

  .cta:hover {
    background: var(--brand-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    border: 1px solid var(--border);
    padding: .45rem .6rem;
    border-radius: 10px;
    background: #fff
  }

  .hero {
    position: relative;
    isolation: isolate;
    overflow: hidden
  }

  .noise {
    position: absolute;
    inset: -20%;
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=50&w=800&auto=format&fit=crop');
    opacity: .07;
    filter: grayscale(1);
    mix-blend: multiply;
    pointer-events: none
  }

  .gridbg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#f1f5f9 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .6;
    pointer-events: none
  }

  .blob {
    position: absolute;
    width: 680px;
    height: 680px;
    right: -220px;
    top: -120px;
    background: radial-gradient(closest-side, #ffedd5, transparent);
    filter: blur(30px);
    opacity: .8;
    pointer-events: none
  }

  .hero .wrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl) 0;
    min-height: 600px;
  }

  .tag {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: .3rem .6rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff
  }

  .title {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    margin: 20px 0;
    letter-spacing: -0.02em;
    color: var(--text);
  }

  .subtitle {
    color: var(--muted);
    max-width: 62ch;
    font-size: 21px;
    line-height: 1.38;
    font-weight: 400;
  }

  .hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap
  }

  .btn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 17px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    cursor: pointer;
  }

  .btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  .btn.brand {
    background: var(--brand);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-sm);
  }

  /* Ensure brand buttons in card-actions maintain same dimensions */
  .card-actions .btn.brand {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    height: auto;
    min-height: 44px;
    padding: 0.875rem 1rem;
    box-sizing: border-box;
  }

  .btn.brand:hover {
    background: var(--brand-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  .metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px
  }

  .metric {
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
  }

  .metric:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .metric .num {
    font-size: 28px;
    font-weight: 800
  }

  .hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 10px;
    perspective: 1000px
  }

  .mini {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
    transition: transform .2s
  }

  .mini i {
    color: var(--brand)
  }

  .hero-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateZ(0);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }

  .hero-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .hero-img img {
    object-fit: contain;
  }

  .hero-img:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .15))
  }

  .marquee {
    display: flex;
    gap: 48px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff
  }

  .marquee .row {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: scroll 22s linear infinite;
    padding: .5rem;
  }

  .marquee i {
    font-size: 22px;
    color: #a21caf;
    background: linear-gradient(135deg, #f59e0b, #a21caf, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .marquee span {
    font-weight: 700;
    color: #a21caf;
    background: linear-gradient(90deg, #f59e0b, #a21caf, #38bdf8, #f472b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
  }

  @keyframes scroll {
    from {
      transform: translateX(0)
    }

    to {
      transform: translateX(-50%)
    }
  }

  section {
    padding: var(--space-xl) 0;
  }

  @media (max-width: 1024px) {
    section {
      padding: var(--space-lg) 0;
    }
  }

  @media (max-width: 768px) {
    section {
      padding: var(--space-lg) 0;
    }
  }

  .head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 24px
  }

  .head h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
  }

  .muted {
    color: var(--muted)
  }

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

  .card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transition: all 0.3s var(--ease);
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.12);
  }

  .thumb {
    height: 180px;
    overflow: hidden;
    background: #f8fafc
  }

  .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: .6s
  }

  .card:hover .thumb img {
    transform: scale(1.12)
  }

  .body {
    padding: 16px
  }

  .kicker {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: .82rem;
    color: var(--brand-700);
    background: var(--brand-100);
    padding: .35rem .75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 149, 0, 0.2);
    font-weight: 600;
    transition: all 0.3s var(--ease);
  }

  .body h3 {
    margin: .5rem 0 6px
  }

  .filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px
  }

  .chip {
    border: 1px solid var(--border);
    padding: .5rem 1rem;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s var(--ease);
  }

  .chip.active,
  .chip:hover {
    background: var(--brand);
    border-color: transparent;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
  }

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

  .step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    position: relative
  }

  .step:before {
    content: attr(data-step);
    position: absolute;
    top: -12px;
    left: 12px;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    font-size: .8rem;
    padding: .15rem .45rem;
    border-radius: 8px
  }

  .slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-100) 100%);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
  }

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

  .slide {
    min-width: 100%;
    padding: 4rem 3rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .slide p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text);
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    max-width: 700px;
    letter-spacing: -0.01em;
  }

  .slide .muted {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 0.5rem;
  }

  .dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
  }

  .dot:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: scale(1.2);
  }

  .dot.active {
    background: var(--brand);
    width: 24px;
    border-radius: 4px;
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
  }

  .accordion {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden
  }

  .acc-item {
    border-bottom: 1px solid var(--border)
  }

  .acc-btn {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    background: #fff;
    border: 0;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer
  }

  .acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 18px
  }

  .acc-panel p {
    color: var(--muted);
    margin: 12px 0 18px
  }

  .cta-band {
    background: linear-gradient(135deg, var(--brand-100), #ffffff);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
  }

  .cta-band:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .field {
    position: relative
  }

  .field input,
  .field textarea,
  .field select {
    width: 100%;
    padding: 1.05rem .9rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    outline: none
  }

  .field textarea {
    min-height: 120px;
    resize: vertical;
    grid-column: 1/-1
  }

  .field label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 .3rem;
    color: #94a3b8;
    pointer-events: none;
    transition: .2s
  }

  .field input:focus+label,
  .field input:not(:placeholder-shown)+label,
  .field textarea:focus+label,
  .field textarea:not(:placeholder-shown)+label {
    top: -8px;
    font-size: .75rem;
    color: var(--brand);
  }

  .submit {
    grid-column: 1/-1;
    justify-content: center;
    cursor: pointer;
  }

  input:focus,
  textarea:focus,
  select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.15);
    outline: none;
  }

  footer {
    background: var(--gray-900);
    color: var(--gray-100);
    padding: var(--space-xl) 0 var(--space-lg);
  }

  footer .cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px
  }

  footer a {
    color: var(--gray-100);
    transition: color 0.3s var(--ease);
  }

  footer a:hover {
    color: var(--brand);
  }

  footer .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800
  }

  .tiny {
    font-size: .88rem;
    color: #94a3b8
  }

  [data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  }

  [data-animate].in {
    opacity: 1;
    transform: translateY(0);
  }

  .totop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 100;
  }

  .totop:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
  }

  .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
      conic-gradient(var(--brand) calc(var(--p, 0)*1%), #e5e7eb 0)
  }

  .totop i {
    position: relative
  }

  .card-actions {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    gap: 12px;
  }

  .card-actions .price {
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: normal;
    flex: 1;
    min-width: 0;
    word-break: break-word;
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }

  .card-actions .price i {
    color: #059669;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .card-actions .btn {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    height: auto;
    min-height: 44px;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.875rem 1rem;
    box-sizing: border-box;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.47;
    display: inline-flex;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 0;
    text-decoration: none;
    font-family: inherit;
    vertical-align: middle;
  }

  .card-actions .btn[disabled],
  .card-actions .btn.muted {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    height: auto;
    min-height: 44px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--muted);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    cursor: not-allowed;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.47;
    padding: 0.875rem 1rem;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    margin: 0;
    text-decoration: none;
    font-family: inherit;
    vertical-align: middle;
  }

  .card-actions .btn[disabled] i,
  .card-actions .btn.muted i {
    font-size: 17px;
    flex-shrink: 0;
  }

  .card-actions .btn[disabled]:hover,
  .card-actions .btn.muted:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    background: rgba(0, 0, 0, 0.05);
  }

  #about {
    padding: 4rem 2rem;
    background: #fff;
  }

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

  #about {
    position: relative;
    padding: 5rem 2rem;
    background: var(--bg);
    overflow: hidden;
  }

  #about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
  }

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

  #about .about-mission-program {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
  }

  #about .mission-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--paper);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }

  #about .mission-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand), #FFB84D);
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s var(--ease);
  }

  #about .mission-icon:hover {
    transform: scale(1.05);
  }

  #about .mission-icon i {
    display: inline-block;
    font-size: inherit;
    color: inherit;
    line-height: 1;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
  }

  #about .mission-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  #about .mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
  }

  #about .about-values {
    margin-bottom: 5rem;
  }

  #about .subsection-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.3;
  }

  #about .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  #about .value-card {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }

  #about .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }

  #about .value-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-100);
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.5rem;
    color: var(--brand);
    font-size: 2rem;
  }

  #about .value-icon i {
    display: inline-block;
    font-size: inherit;
    color: inherit;
    line-height: 1;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
  }

  #about .value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  #about .value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
  }

  #about .head {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
  }

  #about .head h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  #about .head .muted {
    font-size: 1.2rem;
    color: var(--muted);
  }

  #competitions .head {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
  }

  #competitions .head h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  #competitions .head .muted {
    font-size: 1.2rem;
    color: var(--muted);
  }

  #about .about-faq {
    margin-bottom: 2rem;
  }

  #about .faq {
    border-radius: var(--radius);
    padding: 2rem;
    background: var(--paper);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
  }

  #about .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
  }

  #about .faq-item:last-child {
    border-bottom: none;
  }

  #about .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    min-height: 44px;
  }

  #about .faq-question:hover {
    color: var(--brand);
  }

  #about .faq-question span {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--brand);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
  }

  #about .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1rem;
  }

  #about .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1rem 0.5rem;
  }

  #about .faq-item.active .faq-question span {
    transform: rotate(45deg);
  }

  #about .faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
  }

  #services {
    padding: 5rem 2rem;
    background: var(--bg);
    position: relative;
  }

  #services .head {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
  }

  #services .head h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  #services .head .muted {
    font-size: 1.2rem;
    color: var(--muted);
  }

  #highlights .head {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
  }

  #highlights .head h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  #highlights .head .muted {
    font-size: 1.2rem;
    color: var(--muted);
  }

  section:has(.timeline) .head {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
  }

  section:has(.timeline) .head h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  section:has(.timeline) .head .muted {
    font-size: 1.2rem;
    color: var(--muted);
  }

  #news .head {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
  }

  #news .head h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  #news .head .muted {
    font-size: 1.2rem;
    color: var(--muted);
  }

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

  .service-card {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--brand);
  }

  .service-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-100), #fff);
  }

  .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .service-card:hover .service-card-image img {
    transform: scale(1.1);
  }

  .service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .service-card:hover .service-card-overlay {
    opacity: 1;
  }

  .service-card-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand), #FFB84D);
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.3);
    z-index: 2;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }

  .service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 149, 0, 0.4);
  }

  .service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .service-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-700);
    background: var(--brand-100);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #fed7aa;
    width: fit-content;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .service-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1.5rem;
    flex: 1;
  }

  .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    padding: 0.5rem 0;
  }

  .service-card-link:hover {
    color: var(--brand-700);
    gap: 0.75rem;
  }

  .service-card-link i {
    transition: transform 0.3s ease;
  }

  .service-card-link:hover i {
    transform: translateX(4px);
  }

  #contact {
    padding: 4rem 2rem;
    background: #fff;
  }

  #contact .container {
    max-width: 800px;
    margin: 0 auto;
  }

  #contact .head {
    text-align: center;
    margin-bottom: 2rem;
  }

  #contact .head h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--brand);
  }

  #contact form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  #contact .field textarea {
    grid-column: 1 / -1;
  }

  #contact .submit {
    grid-column: 1 / -1;
    justify-content: center;
    cursor: pointer;
  }

  .faq {
    background: var(--bg);
    border-radius: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--border);
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

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

  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0.8rem 1rem;
  }

  .faq-item.active .faq-question span {
    transform: rotate(45deg);
  }

  #contact form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  #contact .field.full {
    grid-column: 1 / -1;
  }

  #contact textarea {
    min-height: 160px;
  }

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

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Card actions responsive for tablet landscape */
    .card-actions .btn {
      width: 130px;
      min-width: 130px;
      max-width: 130px;
      font-size: 16px;
      font-weight: 600;
      padding: 0.8rem 1rem;
      line-height: 1.47;
    }

    .card-actions .btn[disabled],
    .card-actions .btn.muted {
      width: 130px;
      min-width: 130px;
      max-width: 130px;
      font-size: 16px;
      font-weight: 600;
      padding: 0.8rem 1rem;
      line-height: 1.47;
    }

    .card-actions .btn[disabled] i,
    .card-actions .btn.muted i {
      font-size: 16px;
    }

    .timeline {
      grid-template-columns: repeat(2, 1fr);
    }

    .hero .wrap {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .navlinks {
      display: none;
    }

    .burger {
      display: inline-flex;
    }

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

    .grid {
      display: flex;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 1.5rem;
      padding-bottom: 1rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: var(--brand) transparent;
    }

    .grid::-webkit-scrollbar {
      height: 6px;
    }

    .grid::-webkit-scrollbar-track {
      background: transparent;
    }

    .grid::-webkit-scrollbar-thumb {
      background: var(--brand);
      border-radius: 3px;
    }

    .grid>* {
      flex: 0 0 85%;
      max-width: 85%;
      scroll-snap-align: start;
    }

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

    footer .cols {
      grid-template-columns: 1fr 1fr;
    }

    .hero .title {
      font-size: 1.8rem;
    }

    .hero .subtitle {
      font-size: 0.95rem;
    }

    .marquee {
      gap: 24px;
    }

    .top .container {
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }

    /* Container mobile adjustments */
    .container {
      padding-inline: 1.5rem;
    }

    /* Head section mobile fixes */
    .head {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .head h2 {
      font-size: 1.75rem;
      line-height: 1.3;
    }

    .head .muted {
      font-size: 0.9rem;
    }

    /* Section-specific mobile styles */
    #competitions,
    #highlights,
    section:not(#home):not(#about):not(#contact):not(#services) {
      padding: 3rem 1.5rem;
    }

    /* Card actions responsive for tablets */
    .card-actions {
      flex-direction: row-reverse;
      gap: 10px;
    }

    .card-actions .price {
      font-size: 0.8rem;
      padding: 6px 10px;
      white-space: normal;
      flex: 1;
      min-width: 0;
    }

    .card-actions .btn {
      width: 120px;
      min-width: 120px;
      max-width: 120px;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.75rem 0.875rem;
      line-height: 1.47;
    }

    .card-actions .btn[disabled],
    .card-actions .btn.muted {
      width: 120px;
      min-width: 120px;
      max-width: 120px;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.75rem 0.875rem;
      line-height: 1.47;
      justify-content: center;
      text-align: center;
      pointer-events: none;
    }

    .card-actions .btn[disabled] i,
    .card-actions .btn.muted i {
      font-size: 0.9rem;
    }

    #services {
      padding: 3rem 1.5rem;
    }

    #services .head {
      margin-bottom: 3rem;
    }

    #services .head h2 {
      font-size: 2.25rem;
    }

    #services .head .muted {
      font-size: 1rem;
    }

    section:has(.timeline) .head {
      margin-bottom: 3rem;
    }

    section:has(.timeline) .head h2 {
      font-size: 2.25rem;
    }

    section:has(.timeline) .head .muted {
      font-size: 1rem;
    }

    #news .head {
      margin-bottom: 3rem;
    }

    #news .head h2 {
      font-size: 2.25rem;
    }

    #news .head .muted {
      font-size: 1rem;
    }

    .services-grid {
      display: flex;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 1.5rem;
      padding-bottom: 1rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: var(--brand) transparent;
    }

    .services-grid::-webkit-scrollbar {
      height: 6px;
    }

    .services-grid::-webkit-scrollbar-track {
      background: transparent;
    }

    .services-grid::-webkit-scrollbar-thumb {
      background: var(--brand);
      border-radius: 3px;
    }

    .services-grid>* {
      flex: 0 0 85%;
      max-width: 85%;
      scroll-snap-align: start;
    }

    .slider {
      border-radius: 20px;
      max-width: 100%;
    }

    .slide {
      padding: 3rem 2rem;
    }

    .slide p {
      font-size: 1.25rem;
      line-height: 1.5;
    }

    .slide .muted {
      font-size: 0.95rem;
    }

    .dots {
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .service-card-image {
      height: 200px;
    }

    .service-card-icon {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
      top: 1rem;
      right: 1rem;
    }

    .service-card-content {
      padding: 1.5rem;
    }

    .service-card-content h3 {
      font-size: 1.25rem;
    }

    .service-card-content p {
      font-size: 0.95rem;
    }

    #about {
      padding: 3rem 1.5rem;
    }

    #about .head {
      margin-bottom: 3rem;
      text-align: center;
    }

    #about .head h2 {
      font-size: 2.25rem;
    }

    #about .head .muted {
      font-size: 1rem;
    }

    #about .about-mission-program {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    #about .mission-card {
      flex-direction: column;
      padding: 2rem;
      gap: 1.5rem;
    }

    #about .mission-icon {
      width: 70px;
      height: 70px;
      font-size: 2rem;
    }

    #about .mission-content h3 {
      font-size: 1.75rem;
    }

    #about .mission-content p {
      font-size: 1rem;
    }

    #about .about-values {
      margin-bottom: 3rem;
    }

    #about .subsection-title {
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }

    #about .values-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    #about .value-card {
      padding: 2rem;
    }

    #about .value-icon {
      width: 60px;
      height: 60px;
      font-size: 1.75rem;
    }

    #about .value-card h4 {
      font-size: 1.25rem;
    }

    #about .value-card p {
      font-size: 0.95rem;
    }

    #about .head {
      margin-bottom: 3rem;
    }

    #about .about-faq {
      margin-bottom: 1rem;
    }

    #about .faq {
      padding: 1.5rem;
    }

    #about .faq-question {
      font-size: 0.95rem;
      padding: 1rem;
      min-height: 44px;
    }

    #about .faq-answer {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    #about {
      padding: 2.5rem 1rem;
    }

    #about .head {
      margin-bottom: 2.5rem;
    }

    #about .head h2 {
      font-size: 1.75rem;
    }

    #about .head .muted {
      font-size: 0.9rem;
    }

    #about .about-mission-program {
      gap: 1.25rem;
      margin-bottom: 2.5rem;
    }

    #about .mission-card {
      padding: 1.5rem;
    }

    #about .mission-icon {
      width: 60px;
      height: 60px;
      font-size: 1.75rem;
    }

    #about .mission-content h3 {
      font-size: 1.5rem;
    }

    #about .mission-content p {
      font-size: 0.95rem;
      line-height: 1.7;
    }

    #about .about-values {
      margin-bottom: 2.5rem;
    }

    #about .subsection-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    #about .values-grid {
      gap: 1.25rem;
    }

    #about .value-card {
      padding: 1.5rem;
    }

    #about .value-icon {
      width: 55px;
      height: 55px;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    #about .value-card h4 {
      font-size: 1.15rem;
    }

    #about .value-card p {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    #about .head {
      margin-bottom: 2.5rem;
    }

    #about .about-faq {
      margin-bottom: 0.5rem;
    }

    #about .faq {
      padding: 1rem;
      border-radius: 0.75rem;
    }

    #about .faq-item {
      padding: 0.75rem 0;
    }

    #about .faq-question {
      font-size: 0.9rem;
      padding: 0.875rem;
      min-height: 44px;
      line-height: 1.4;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    #about .faq-question span {
      flex-shrink: 0;
      margin-left: 0.75rem;
      font-size: 1.25rem;
    }

    #about .faq-answer {
      font-size: 0.85rem;
      padding: 0.75rem 0.875rem 0.5rem;
    }

    #about .faq-answer p {
      word-wrap: break-word;
      overflow-wrap: break-word;
      line-height: 1.6;
    }
  }

  @media (max-width: 480px) {
    .goto .hero .wrap {
      padding: 40px 0;
    }

    .hero .title {
      font-size: 1.6rem;
    }

    .hero-cta {
      flex-direction: column;
      align-items: stretch;
    }

    .metrics {
      grid-template-columns: 1fr;
      gap: 12px;
    }

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

    /* Head section small mobile */
    .head {
      gap: 10px;
      margin-bottom: 20px;
    }

    .head h2 {
      font-size: 1.5rem;
      line-height: 1.2;
    }

    .head .muted {
      font-size: 0.85rem;
    }

    /* Container small mobile adjustments */
    .container {
      padding-inline: 1rem;
    }

    /* Section padding on small mobile */
    #competitions,
    #highlights,
    section:not(#home):not(#about):not(#contact):not(#services) {
      padding: 2.5rem 1rem;
    }

    #services {
      padding: 2.5rem 1rem;
    }

    #services .head h2 {
      font-size: 1.75rem;
    }

    #services .head .muted {
      font-size: 0.9rem;
    }

    section:has(.timeline) .head h2 {
      font-size: 1.75rem;
    }

    section:has(.timeline) .head .muted {
      font-size: 0.9rem;
    }

    #news .head h2 {
      font-size: 1.75rem;
    }

    #news .head .muted {
      font-size: 0.9rem;
    }

    .services-grid {
      gap: 1.25rem;
    }

    .services-grid>* {
      flex: 0 0 90%;
      max-width: 90%;
    }

    .grid>* {
      flex: 0 0 90%;
      max-width: 90%;
    }

    .service-card-image {
      height: 180px;
    }

    .service-card-icon {
      width: 45px;
      height: 45px;
      font-size: 1.25rem;
    }

    .service-card-content {
      padding: 1.25rem;
    }

    .service-card-content h3 {
      font-size: 1.15rem;
    }

    .service-card-content p {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .service-badge {
      font-size: 0.8rem;
      padding: 0.35rem 0.75rem;
    }

    .filters {
      flex-wrap: wrap;
      gap: 6px;
    }

    .chip {
      font-size: 0.85rem;
      padding: 0.35rem 0.65rem;
    }

    .card-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .card-actions .price {
      width: 100%;
      font-size: 0.8rem;
      padding: 8px 10px;
      text-align: center;
      white-space: normal;
      word-break: break-word;
    }

    .card-actions .btn {
      width: 100%;
      min-width: 100%;
      max-width: 100%;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.75rem 1rem;
      line-height: 1.47;
    }

    .card-actions .btn[disabled],
    .card-actions .btn.muted {
      width: 100%;
      min-width: 100%;
      max-width: 100%;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.75rem 1rem;
      line-height: 1.47;
      justify-content: center;
      text-align: center;
      pointer-events: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .card-actions .btn[disabled] i,
    .card-actions .btn.muted i {
      font-size: 0.9rem;
    }

    /* Card text on mobile */
    .card .body p,
    .card .body p.muted {
      -webkit-line-clamp: 3;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .card .body h3 {
      font-size: 1rem;
      line-height: 1.3;
    }

    .slider {
      border-radius: 16px;
    }

    .slide {
      padding: 2.5rem 1.5rem;
    }

    .slide p {
      font-size: 1.1rem;
      line-height: 1.5;
    }

    .slide .muted {
      font-size: 0.9rem;
    }

    .dots {
      margin-top: 1.25rem;
      margin-bottom: 1.25rem;
      gap: 8px;
    }

    .dot {
      width: 6px;
      height: 6px;
    }

    .dot.active {
      width: 20px;
    }

    footer .cols {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .totop {
      right: 12px;
      bottom: 12px;
      width: 44px;
      height: 44px;
    }
  }

  @media (max-width: 360px) {
    .title {
      font-size: 1.4rem;
    }

    .subtitle {
      font-size: 0.85rem;
    }

    .btn,
    .cta {
      font-size: 0.85rem;
      padding: 0.6rem 0.9rem;
    }

    .pill {
      font-size: 0.75rem;
      padding: 0.2rem 0.5rem;
    }

    /* Card actions responsive for very small mobile */
    .card-actions .btn {
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.6rem 0.9rem;
      line-height: 1.47;
    }

    .card-actions .btn[disabled],
    .card-actions .btn.muted {
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.6rem 0.9rem;
      line-height: 1.47;
    }

    .card-actions .btn[disabled] i,
    .card-actions .btn.muted i {
      font-size: 0.85rem;
    }
  }

  .competition-card {
    margin-top: 20px;
    margin-bottom: 20px;
    background: #ffffff00;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    padding: 22px;
    align-items: start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .competition-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  .competition-card img {
    border-radius: 14px;
    object-fit: cover;
    width: 100%;
    max-height: 260px;
  }

  .competition-content h1 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text);
  }

  .competition-content p {
    margin: 6px 0;
    color: var(--muted);
    font-size: 0.95rem;
  }

  .competition-content .full-description {
    line-height: 1.7;
    margin: 20px 0;
    color: var(--text);
    font-size: 1.05rem;
    word-wrap: break-word;
    padding: 16px 0;
  }

  .competition-content strong {
    color: var(--text);
  }

  .competition-content .btn {
    margin-top: 12px;
    display: inline-flex;
    justify-content: center;
  }

  .competition-content .btn+.btn {
    margin-left: 10px;
  }

  .competition-content a.btn {
    padding: 0.8rem 1.1rem;
    border-radius: 12px;
    font-weight: 600;
  }

  .competition-content a.btn.magnet {
    background: #fff;
    color: var(--brand);
    border: 1px solid var(--brand);
  }

  .competition-content a.btn.magnet:hover {
    background: var(--brand-100);
  }

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

    .competition-card img {
      max-height: 300px;
      margin-inline: auto;
    }

    .competition-content .btn+.btn {
      margin-left: 0;
      margin-top: 10px;
    }
  }

  .card:hover .comp_img {
    transform: translateX(-5%) translateY(-5%) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
  }

  .dates {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
  }

  .dates .kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 149, 0, 0.2);
    background: var(--brand-100);
    color: var(--brand-700);
    font-weight: 600;
  }

  .dates .end {
    border-color: #fecaca;
    background: #fee2e2;
    color: #991b1b;
  }

  .card .thumb {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card .thumb img.comp_img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 75%;
    object-fit: cover;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    border: 5px solid #fff;
    transition: transform .4s ease, box-shadow .4s ease;
  }

  .card:hover .thumb img.comp_img {
    transform: translate(-50%, -50%) scale(1.08) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
  }

  .card .body {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .card .body> :last-child {
    margin-top: auto;
    align-self: flex-start;
    width: auto;
  }

  .card .body> :first-child {
    align-self: flex-start;
    width: auto;
  }

  .card .body .competition-description {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: calc(1.5em * 5);
    margin-bottom: 12px;
  }

  /* Card paragraph text wrapping */
  .card .body p,
  .card .body p.muted {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card .body h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .dropdown {
    position: relative;
    display: inline-block;
    margin-top: 8px;
  }

  .dropdown .btn {
    background: linear-gradient(45deg, var(--brand), #FFB84D);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
  }

  .dropdown .btn:hover {
    background: linear-gradient(45deg, #FFB84D, var(--brand));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    bottom: 110%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    min-width: 200px;
    z-index: 999;
  }

  .dropdown-menu li {
    list-style: none;
  }

  .dropdown-menu li a {
    display: block;
    padding: 6px 12px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
  }

  .dropdown-menu li a:hover {
    background: var(--brand);
    color: #fff;
    border-radius: 8px;
  }

  .dropdown-menu {
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .dropdown-menu.show {
    transform: translateY(0);
    opacity: 1;
    display: block !important;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    grid-template-rows: auto 1fr;
  }

  .contact-grid .head {
    grid-column: 1 / -1;
    margin-bottom: 24px;
  }


  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--brand-100);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .contact-info .info-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-700);
  }

  .contact-info .info-item span {
    color: var(--text);
  }

  @media (max-width: 768px) {
    #contact {
      padding: 3rem 1.5rem;
    }

    #contact .head h2 {
      font-size: 1.75rem;
    }

    #contact form {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .contact-info {
      padding: 20px;
    }

    .contact-info .info-item {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {
    #contact {
      padding: 2.5rem 1rem;
    }

    #contact .head h2 {
      font-size: 1.5rem;
    }

    #contact form {
      gap: 14px;
    }

    #contact .field input,
    #contact .field select,
    #contact .field textarea {
      font-size: 16px;
      /* Prevents zoom on iOS */
      padding: 12px;
      min-height: 44px;
      /* Touch-friendly */
    }

    #contact textarea {
      min-height: 120px;
    }

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

    .contact-info .info-item strong {
      font-size: 0.9rem;
      margin-bottom: 4px;
    }

    .contact-info .info-item span {
      font-size: 0.85rem;
      word-wrap: break-word;
    }
  }

  #privacy-policy {
    padding: 4rem 2rem;
    background: #fff;
  }

  #privacy-policy .container {
    max-width: 800px;
    margin: 0 auto;
  }

  #privacy-policy h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 1.5rem;
    text-align: center;
  }

  #privacy-policy h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-700);
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
  }

  #privacy-policy p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1rem;
  }

  #privacy-policy ul {
    list-style: disc inside;
    padding-left: 1rem;
    margin-bottom: 1rem;
  }

  #privacy-policy ul li {
    margin-bottom: 0.5rem;
    color: var(--text);
  }

  #privacy-policy a {
    color: var(--brand);
    text-decoration: underline;
  }

  #privacy-policy a:hover {
    color: var(--brand-700);
  }

  @media (max-width: 768px) {
    #privacy-policy {
      padding: 3rem 1.5rem;
    }

    #privacy-policy h2 {
      font-size: 1.75rem;
    }

    #privacy-policy h3 {
      font-size: 1.15rem;
    }

    #privacy-policy p,
    #privacy-policy ul li {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {
    .contact {
      margin-right: 1%;
    }

    #privacy-policy {
      padding: 2.5rem 1rem;
    }

    #privacy-policy h2 {
      font-size: 1.5rem;
    }

    #privacy-policy h3 {
      font-size: 1.05rem;
    }

    #privacy-policy p,
    #privacy-policy ul li {
      font-size: 0.9rem;
    }
  }

  /* Section center alignment */
  .section-center {
    text-align: center;
    margin-top: 2rem;
  }

  /* Competition card actions */
  .card-actions .price {
    font-size: 14px;
  }

  /* Download links */
  .download-link {
    text-decoration: none;
    color: #333;
    margin: 1%;
    border-radius: 10px;
    display: inline-block;
    padding: 8px 12px;
    transition: all 0.3s var(--ease);
    background: var(--gray-100);
  }

  .download-link:hover {
    background: var(--brand-100);
    color: var(--brand);
  }

  .download-list-item {
    margin-bottom: 4px;
  }

  /* CTA section heading */
  .cta-heading {
    margin: 0 0 6px 0;
  }

  .cta-subtitle {
    margin: 0;
  }

  /* Footer styles */
  .footer-container {
    padding: 28px 0;
  }

  .footer-tiny {
    margin-top: 8px;
  }

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

  .footer-bottom {
    margin-top: 16px;
    border-top: 1px solid rgba(29, 29, 31, 0.1);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-brand-text {
    opacity: 0.7;
  }

  .footer-brand-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s var(--ease);
  }

  .footer-brand-link:hover {
    opacity: 0.8;
  }

  .footer-brand-img {
    height: 20px;
    width: auto;
  }

  .footer-brand-name {
    font-weight: 500;
  }

  /* Form label */
  .form-label-top {
    top: -8px;
    font-size: 0.75rem;
    color: var(--brand);
  }