/* ===== VARIABLES ===== */
    :root {
      --white: #FFFFFF;
      --off-white: #FAF9F7;
      --light-gray: #F3F1EE;
      --orange: #F26A1B;
      --orange-light: #FFF0E6;
      --orange-dark: #D4550F;
      --black: #111110;
      --dark: #1E1D1B;
      --gray-text: #6B6860;
      --border: #E8E5E0;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    /* ===== NAV ===== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
    .logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--black);
      letter-spacing: -0.5px;
    }
    .logo span { color: var(--orange); }
    .nav-links { display: flex; gap: 8px; list-style: none; }
    .nav-links a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--gray-text);
      text-decoration: none;
      padding: 8px 18px;
      border-radius: 100px;
      transition: all .25s;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--black);
      background: var(--light-gray);
    }
    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      font-weight: 600 !important;
    }
    .nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

    /* ===== PAGE SYSTEM ===== */
    .page { display: none; padding-top: 72px; min-height: 100vh; }
    .page.active { display: block; animation: fadeIn .4s ease; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: calc(100vh - 72px);
      display: flex; align-items: center;
      overflow: hidden;
      background: var(--white);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(to right, rgba(255,255,255,1) 50%, rgba(255,255,255,0.1) 100%);
      z-index: 2;
    }
    .hero-img {
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 55%;
      object-fit: cover;
      filter: brightness(.85) saturate(1.1);
    }
    /* Simulated restaurant photo using CSS */
    .hero-restaurant-bg {
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 58%;
      z-index: 1;
      overflow: hidden;
    }
    .hero-restaurant-bg::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 70% 40%, rgba(242,106,27,0.12) 0%, transparent 60%),
        linear-gradient(135deg, #2C1A0E 0%, #4A2C1A 25%, #1A0F08 50%, #3D2314 75%, #261508 100%);
    }
    /* Restaurant interior elements */
    .hero-restaurant-bg::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.03) 60px, rgba(255,255,255,.03) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,.02) 80px, rgba(255,255,255,.02) 81px);
    }
    .restaurant-decor {
      position: absolute; inset: 0; z-index: 1;
    }
    /* Tables */
    .rtable {
      position: absolute;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.15);
    }
    .rtable-1 { width: 120px; height: 80px; border-radius: 12px; bottom: 30%; left: 15%; background: rgba(255,255,255,0.05); }
    .rtable-2 { width: 100px; height: 70px; border-radius: 10px; bottom: 20%; left: 45%; background: rgba(255,255,255,0.04); }
    .rtable-3 { width: 90px; height: 65px; border-radius: 10px; top: 40%; left: 5%; background: rgba(255,255,255,0.06); }
    /* Lamp circles */
    .lamp {
      position: absolute;
      width: 40px; height: 40px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,180,80,0.6) 0%, rgba(242,106,27,0.2) 40%, transparent 70%);
    }
    .lamp-1 { top: 25%; left: 20%; }
    .lamp-2 { top: 20%; left: 55%; }
    .lamp-3 { top: 30%; left: 80%; }
    /* Orange accent line */
    .hero-accent {
      position: absolute; top: 0; right: 0; width: 4px; height: 100%;
      background: linear-gradient(to bottom, transparent, var(--orange), transparent);
      opacity: .5;
    }

    .hero-content {
      position: relative; z-index: 3;
      padding: 0 5%;
      max-width: 620px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--orange-light);
      border: 1px solid rgba(242,106,27,.2);
      color: var(--orange);
      font-size: .8rem; font-weight: 600; letter-spacing: .5px;
      padding: 6px 14px; border-radius: 100px;
      margin-bottom: 28px;
      text-transform: uppercase;
    }
    .hero-badge::before { content: '●'; font-size: .6rem; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

    h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -1.5px;
      margin-bottom: 24px;
      color: var(--black);
    }
    h1 span { color: var(--orange); }
    .hero-sub {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--gray-text);
      margin-bottom: 40px;
      font-weight: 300;
      max-width: 480px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--orange);
      color: var(--white);
      padding: 16px 32px;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      border: none; cursor: pointer;
      text-decoration: none;
      transition: all .25s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,106,27,.3); }
    .btn-secondary {
      background: transparent;
      color: var(--black);
      padding: 16px 32px;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 1rem;
      border: 1.5px solid var(--border);
      cursor: pointer;
      text-decoration: none;
      transition: all .25s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-secondary:hover { border-color: var(--black); background: var(--light-gray); }

    /* Hero stats */
    .hero-stats {
      display: flex; gap: 32px; margin-top: 56px;
      padding-top: 32px;
      border-top: 3px solid var(--border);
    }
    .stat-item h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.8rem; font-weight: 800;
      color: var(--orange);
    }
    .stat-item p { font-size: .85rem; color: var(--gray-text); }

    /* ===== SECTIONS COMMON ===== */
    section { padding: 96px 5%; }
    .section-label {
      font-size: .78rem; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 12px;
    }
    h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .section-sub {
      font-size: 1.05rem;
      color: var(--gray-text);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 56px;
    }

    /* ===== HOW IT WORKS ===== */
    .how { background: var(--off-white); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2px;
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
    }
    .step-card {
      background: var(--white);
      padding: 40px 32px;
      position: relative;
    }
    .step-card:not(:last-child) { border-right: 1px solid var(--border); }
    .step-num {
      font-family: 'Syne', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--orange-light);
      line-height: 1;
      margin-bottom: 20px;
    }
    .step-icon {
      width: 48px; height: 48px;
      background: var(--orange-light);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }
    .step-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem; font-weight: 700;
      margin-bottom: 10px;
    }
    .step-card p { font-size: .9rem; color: var(--gray-text); line-height: 1.6; }

    /* ===== WHY US ===== */
    .why { background: var(--white); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .why-card {
      background: var(--off-white);
      border-radius: 20px;
      padding: 36px;
      border: 1px solid var(--border);
      transition: all .3s;
      position: relative; overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--orange);
      transform: scaleY(0); transform-origin: bottom;
      transition: transform .35s;
    }
    .why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.07); }
    .why-card:hover::before { transform: scaleY(1); }
    .why-card-icon {
      width: 52px; height: 52px;
      background: var(--white);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,.06);
    }
    .why-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem; font-weight: 700;
      margin-bottom: 10px;
    }
    .why-card p { font-size: .9rem; color: var(--gray-text); line-height: 1.6; }
    .why-card.featured {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
      grid-column: span 2;
    }
    .why-card.featured p { color: rgba(255,255,255,.6); }
    .why-card.featured .why-card-icon { background: var(--orange); }

    /* ===== PRODUCT VIDEO ===== */
    .product-video-section {
      background: var(--white);
      padding-top: 24px;
    }
    .product-video-heading {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
      gap: 32px;
      align-items: end;
      margin-bottom: 36px;
    }
    .product-video-heading h2,
    .product-video-heading .section-sub {
      margin-bottom: 0;
    }
    .product-video-shell {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: var(--black);
      border: 1px solid var(--border);
      box-shadow: 0 24px 70px rgba(17,17,16,.12);
      aspect-ratio: 16 / 9;
    }
    .product-video-shell::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }
    .product-video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: var(--black);
    }

    /* ===== PLANS ===== */
    .plans { background: var(--off-white); }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: start;
    }
    .plan-card {
      background: var(--white);
      border-radius: 24px;
      padding: 36px 32px;
      border: 1.5px solid var(--border);
      transition: all .3s;
    }
    .plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
    .plan-card.popular {
      background: var(--black);
      border-color: var(--orange);
      position: relative;
      padding-top: 52px;
    }
    .popular-badge {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
      background: var(--orange);
      color: var(--white);
      font-size: .75rem; font-weight: 700;
      padding: 6px 18px; border-radius: 100px;
      letter-spacing: .5px; text-transform: uppercase;
    }
    .plan-name {
      font-family: 'Syne', sans-serif;
      font-size: .85rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--orange); margin-bottom: 12px;
    }
    .plan-price {
      font-family: 'Syne', sans-serif;
      font-size: 3rem; font-weight: 800;
      letter-spacing: -2px; line-height: 1;
      margin-bottom: 6px;
    }
    .plan-card.popular .plan-price { color: var(--white); }
    .plan-period { font-size: .85rem; color: var(--gray-text); margin-bottom: 28px; }
    .plan-card.popular .plan-period { color: rgba(255,255,255,.5); }
    .plan-divider { height: 1px; background: var(--border); margin: 24px 0; }
    .plan-card.popular .plan-divider { background: rgba(255,255,255,.1); }
    .plan-features { list-style: none; margin-bottom: 32px; }
    .plan-features li {
      display: flex; align-items: center; gap: 10px;
      font-size: .9rem; padding: 7px 0;
      color: var(--gray-text);
    }
    .plan-card.popular .plan-features li { color: rgba(255,255,255,.75); }
    .plan-features li::before { content: '✓'; color: var(--orange); font-weight: 700; min-width: 16px; }
    .plan-btn {
      width: 100%; padding: 14px;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600; font-size: .95rem;
      cursor: pointer; border: none; transition: all .25s;
    }
    .plan-btn-outline {
      background: transparent;
      border: 1.5px solid var(--border);
      color: var(--black);
    }
    .plan-btn-outline:hover { border-color: var(--orange); color: var(--orange); }
    .plan-btn-filled {
      background: var(--orange);
      color: var(--white);
    }
    .plan-btn-filled:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,106,27,.3); }

    /* ===== TESTIMONIALS ===== */
    .testimonials { background: var(--white); }
    .testi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .testi-card {
      background: var(--off-white);
      border-radius: 20px; padding: 32px;
      border: 1px solid var(--border);
    }
    .testi-stars { color: var(--orange); font-size: 1rem; margin-bottom: 16px; }
    .testi-text { font-size: .95rem; line-height: 1.7; color: var(--dark); font-style: italic; margin-bottom: 24px; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--orange);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif; font-weight: 800; color: var(--white); font-size: 1rem;
    }
    .testi-name { font-weight: 600; font-size: .9rem; }
    .testi-role { font-size: .8rem; color: var(--gray-text); }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      background: var(--black);
      padding: 80px 5%;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(242,106,27,.15) 0%, transparent 70%);
    }
    .cta-banner h2 { color: var(--white); position: relative; z-index: 1; }
    .cta-banner p { color: rgba(255,255,255,.6); margin: 16px auto 36px; max-width: 480px; position: relative; z-index: 1; }
    .cta-banner .btn-primary { position: relative; z-index: 1; }

    /* ===== ABOUT PAGE ===== */
    .about-hero {
      background: var(--off-white);
      padding: 80px 5% 0;
      min-height: 50vh;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
    }
    .about-hero-content { max-width: 600px; }
    .about-hero-visual {
      position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
      width: 360px; height: 360px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 40% 40%, rgba(242,106,27,.2), transparent 60%),
        var(--light-gray);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem;
    }
    .about-hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 20px; }
    .about-title {
      max-width: none;
      white-space: normal;
    }
    .about-title span {
      display: block;
      white-space: nowrap;
    }
    .about-hero p { font-size: 1.05rem; color: var(--gray-text); line-height: 1.7; max-width: 520px; }
    .about-body { padding: 80px 5%; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 80px; }
    .about-text h2 { font-size: 2rem; margin-bottom: 16px; }
    .about-text p { font-size: .95rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 16px; }
    .about-visual-box {
      background: var(--black); border-radius: 24px;
      padding: 40px; display: flex; flex-direction: column;
      gap: 20px;
    }
    .metric-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .metric-row:last-child { border-bottom: none; }
    .metric-val {
      font-family: 'Syne', sans-serif;
      font-size: 2.2rem; font-weight: 800;
      color: var(--orange);
    }
    .metric-label { font-size: .85rem; color: rgba(255,255,255,.5); }
    .team-section h2 { margin-bottom: 40px; }
    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .team-card {
      background: var(--off-white);
      border-radius: 20px; padding: 32px 24px;
      text-align: center; border: 1px solid var(--border);
    }
    .team-avatar {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--orange); margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; font-weight: 800; color: var(--white);
      font-family: 'Syne', sans-serif;
    }
    .team-card h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
    .team-card p { font-size: .85rem; color: var(--gray-text); }

    /* ===== CONTACT PAGE ===== */
    .contact-wrapper {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 64px; align-items: start;
      padding: 80px 5%;
    }
    .contact-info h1 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 20px; }
    .contact-info p { color: var(--gray-text); line-height: 1.7; margin-bottom: 40px; }
    .contact-detail {
      display: flex; gap: 16px; align-items: flex-start;
      margin-bottom: 28px;
    }
    .contact-detail-icon {
      width: 44px; height: 44px; min-width: 44px;
      background: var(--orange-light);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .contact-detail h4 { font-weight: 600; font-size: .9rem; margin-bottom: 4px; }
    .contact-detail p { font-size: .88rem; color: var(--gray-text); margin: 0; }
    .contact-form {
      background: var(--off-white);
      border-radius: 24px; padding: 48px;
      border: 1px solid var(--border);
    }
    .contact-form h2 { font-size: 1.5rem; margin-bottom: 32px; }
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 8px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid var(--border);
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem; color: var(--black);
      background: var(--white);
      transition: border-color .25s;
      outline: none;
      resize: vertical;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--orange);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit {
      width: 100%; margin-top: 8px;
    }
    .success-msg {
      display: none; text-align: center; padding: 32px;
    }
    .success-msg .checkmark { font-size: 3rem; margin-bottom: 16px; }
    .success-msg h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; margin-bottom: 8px; }
    .success-msg p { color: var(--gray-text); font-size: .9rem; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--black);
      padding: 64px 5% 32px;
      color: rgba(255,255,255,.5);
    }
    .footer-top {
      display: flex; justify-content: space-between; align-items: flex-start;
      padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
      margin-bottom: 32px; flex-wrap: wrap; gap: 32px;
    }
    .footer-brand .logo { color: var(--white); margin-bottom: 12px; display: block; }
    .footer-brand p { font-size: .875rem; max-width: 280px; line-height: 1.6; }
    .footer-links h4 { color: var(--white); font-size: .85rem; font-weight: 600; margin-bottom: 16px; }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .875rem; transition: color .2s; }
    .footer-links a:hover { color: var(--orange); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 8px; }
    .footer-bottom span { color: var(--orange); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hero-restaurant-bg { display: none; }
      .hero-bg { background: var(--white); }
      h1 { font-size: 2.4rem; }
      .hero-stats { gap: 20px; }
      .why-grid, .plans-grid, .testi-grid, .team-grid,
      .about-grid, .contact-wrapper, .form-row {
        grid-template-columns: 1fr;
      }
      .why-card.featured { grid-column: 1; }
      .about-hero-visual { display: none; }
      .plan-card.popular { padding-top: 52px; }
      nav { padding: 0 4%; }
      .nav-links { gap: 4px; }
      .nav-links a { padding: 7px 12px; font-size: .82rem; }
    }

/* ===== ESTILOS QUE ANTES ESTABAN INLINE EN EL HTML ===== */
.inline-style-1 { cursor:pointer; }
.inline-style-2 { height:38px; }
.inline-style-3 { background-image:url('hero-horizontal.png'); background-size:cover; background-position:center; z-index:1; }
.inline-style-4 { background-image:url('hero-horizontal.png'); background-size:cover; background-position:center; position:absolute; inset:0; z-index:1; }
.inline-style-5 { position:absolute; inset:0; background:linear-gradient(to right, rgba(0,0,0,0.80) 45%, rgba(0,0,0,0.2) 100%); z-index:2; }
.inline-style-6 { color:#FFFFFF; }
.inline-style-7 { color:rgba(255,255,255,0.8); }
.inline-style-8 { border-color:#FFFFFF; color:#FFFFFF; background:transparent; }
.inline-style-9 { display:flex; gap:16px; margin-top:40px; padding-top:32px; }
.inline-style-10 { padding:16px 24px; }
.inline-style-11 { font-family:Syne,sans-serif; font-size:1.8rem; font-weight:800; color:#F26A1B; }
.inline-style-12 { font-size:.85rem; color:#FFFFFF; }
.inline-style-13 { color:#F26A1B; }
.inline-style-14 { font-size:1rem;font-weight:400;color:var(--gray-text); }
.inline-style-15 { color:var(--white); }
.inline-style-16 { font-size:1rem;font-weight:400;color:rgba(255,255,255,.5); }


/* =========================================================
   RESPONSIVE FINAL — DESKTOP, TABLET Y MÓVIL
   ========================================================= */

/* Evita desbordes horizontales globales */
html, body {
  width: 100%;
  max-width: 100%;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

.page {
  overflow-x: hidden;
}

section {
  width: 100%;
}

/* Botones más seguros en cualquier pantalla */
.btn-primary,
.btn-secondary,
.plan-btn {
  text-align: center;
  justify-content: center;
  white-space: normal;
}

/* ===== Tablet grande / laptops pequeñas ===== */
@media (max-width: 1100px) {
  section {
    padding: 80px 5%;
  }

  .hero-content {
    max-width: 560px;
  }

  .plans-grid,
  .testi-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-grid .plan-card.popular {
    transform: none;
  }

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

  .about-hero-visual {
    width: 280px;
    height: 280px;
    font-size: 4rem;
    opacity: 0.8;
  }
}

/* ===== Tablet y móvil ===== */
@media (max-width: 768px) {
  nav {
    height: auto;
    min-height: 68px;
    padding: 10px 4%;
    gap: 10px;
  }

  .logo img,
  .footer-brand .logo img {
    height: 34px;
  }

  .nav-links {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .page {
    padding-top: 72px;
  }

  section {
    padding: 64px 5%;
  }

  /* HERO RESPONSIVE */
  .hero {
    min-height: auto;
    padding: 72px 5% 56px;
    align-items: flex-start;
    isolation: isolate;
  }

  .hero-restaurant-bg {
    display: none !important;
  }

  .hero-bg {
    display: block;
  }

  .inline-style-4 {
    background-image: url('prosecco.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 1;
  }

  .inline-style-5 {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.84) 0%,
      rgba(0,0,0,0.72) 52%,
      rgba(0,0,0,0.78) 100%
    ) !important;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  h1,
  .about-hero h1,
  .contact-info h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
    margin-bottom: 20px;
  }

  .hero-btns {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    width: 100%;
    padding: 14px 22px;
  }

  .hero-stats,
  .inline-style-9 {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px !important;
    margin-top: 32px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255,255,255,0.25);
  }

  .hero-stats > div,
  .inline-style-10 {
    padding: 14px 16px !important;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
  }

  .inline-style-11 {
    font-size: 1.55rem !important;
  }

  .inline-style-12 {
    font-size: 0.82rem !important;
  }

  .section-label {
    font-size: 0.72rem;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .section-sub {
    font-size: 0.98rem;
    margin-bottom: 36px;
  }

  .steps-grid,
  .why-grid,
  .plans-grid,
  .testi-grid,
  .team-grid,
  .about-grid,
  .contact-wrapper,
  .form-row {
    grid-template-columns: 1fr !important;
  }

  .steps-grid {
    border-radius: 18px;
  }

  .step-card {
    padding: 30px 24px;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .step-card:last-child {
    border-bottom: none;
  }

  .why-card,
  .plan-card,
  .testi-card,
  .team-card,
  .contact-form,
  .about-visual-box {
    border-radius: 18px;
  }

  .why-card,
  .plan-card,
  .testi-card {
    padding: 28px 24px;
  }

      .why-card.featured {
        grid-column: auto !important;
      }

      .product-video-section {
        padding-top: 54px;
      }

      .product-video-heading {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
      }

      .product-video-shell {
        border-radius: 18px;
      }

      .plan-card.popular {
        padding-top: 46px;
      }

  .plan-price {
    font-size: 2.6rem;
  }

  .about-hero {
    min-height: auto;
    padding: 64px 5%;
  }

  .about-hero-visual {
    display: none !important;
  }

  .about-body {
    padding: 64px 5%;
  }

  .contact-wrapper {
    padding: 64px 5%;
  }

  .contact-form {
    padding: 30px 22px;
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.5;
  }
}

/* ===== Celulares pequeños ===== */
@media (max-width: 480px) {
  nav {
    align-items: flex-start;
  }

  .nav-links {
    width: auto;
    max-width: 230px;
  }

  .nav-links a {
    font-size: 0.72rem;
    padding: 6px 8px;
  }

  .page {
    padding-top: 78px;
  }

  .hero {
    padding: 56px 5% 44px;
  }

  h1,
  .about-hero h1,
  .contact-info h1 {
    font-size: clamp(1.9rem, 11vw, 2.35rem);
  }

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

  .btn-primary,
  .btn-secondary {
    padding: 13px 18px;
    font-size: 0.94rem;
  }

  .hero-stats,
  .inline-style-9 {
    margin-top: 28px !important;
  }

  section {
    padding: 54px 5%;
  }

  .step-card,
  .why-card,
  .plan-card,
  .testi-card {
    padding: 24px 20px;
  }

  .plan-price {
    font-size: 2.35rem;
  }

  .metric-row {
    gap: 16px;
  }

  .metric-val {
    font-size: 1.8rem;
  }

  .contact-detail {
    gap: 12px;
  }

  .contact-form {
    padding: 26px 18px;
  }
}

/* ===== MOVIMIENTO PROFESIONAL ===== */
.motion-ready {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

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

.page-enter {
  animation: pagePolish 520ms ease both;
}

@keyframes pagePolish {
  from {
    opacity: .55;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.motion-lift {
  will-change: transform, box-shadow;
}

.motion-lift:hover {
  transform: translateY(-6px);
}

.hero-motion .hero-content {
  transform: translateY(var(--hero-shift, 0));
  opacity: var(--hero-fade, 1);
  transition: opacity 160ms linear;
}

.hero-badge,
.btn-primary,
.btn-secondary,
.plan-btn,
.step-icon,
.why-card-icon,
.contact-detail-icon,
.team-avatar,
.testi-avatar {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after,
.plan-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.24) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.plan-btn:hover::after {
  transform: translateX(120%);
}

.step-card,
.why-card,
.plan-card,
.testi-card,
.team-card,
.contact-detail {
  backface-visibility: hidden;
}

.step-card:hover .step-icon,
.why-card:hover .why-card-icon,
.team-card:hover .team-avatar,
.contact-detail:hover .contact-detail-icon {
  transform: scale(1.06) rotate(-2deg);
}

.step-icon,
.why-card-icon,
.team-avatar,
.contact-detail-icon {
  transition: transform 300ms ease;
}

.form-group {
  transition: transform 240ms ease;
}

.form-group.is-focused {
  transform: translateX(3px);
}

.form-group.is-focused label {
  color: var(--orange);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .motion-ready {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   RESPONSIVE QA FINAL
   ========================================================= */
html {
  overflow-x: hidden;
}

body {
  min-width: 320px;
}

nav {
  min-width: 0;
}

.nav-links,
.hero-btns,
.footer-top,
.footer-bottom,
.testi-author,
.contact-detail,
.metric-row {
  min-width: 0;
}

h1,
h2,
h3,
a,
button,
li,
label,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

section,
.about-body,
.contact-wrapper,
.cta-banner,
footer {
  padding-left: clamp(18px, 5vw, 72px);
  padding-right: clamp(18px, 5vw, 72px);
}

.hero {
  min-height: min(820px, calc(100svh - 72px));
}

.hero-restaurant-bg,
.inline-style-4 {
  background-image: url('hero-horizontal.png') !important;
}

.hero-content {
  width: min(100%, 640px);
}

.hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.15rem);
}

.hero-stats,
.inline-style-9 {
  flex-wrap: wrap;
}

.inline-style-10 {
  min-width: 128px;
}

.steps-grid,
.why-grid,
.plans-grid,
.testi-grid,
.team-grid,
.about-grid,
.contact-wrapper,
.form-row {
  min-width: 0;
}

.step-card,
.why-card,
.plan-card,
.testi-card,
.team-card,
.contact-form,
.about-visual-box {
  min-width: 0;
}

.product-video-section {
  overflow: hidden;
}

.product-video-heading {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
}

.product-video-heading h2 {
  max-width: 980px;
}

.product-video-shell {
  width: min(100%, 1180px);
  margin-inline: auto;
  background: #000;
}

.product-video {
  height: 100%;
  object-fit: contain;
  background: #000;
}

.about-hero {
  min-height: 440px;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: min(58vw, 640px);
  min-width: min(100%, 470px);
  padding-right: 0;
}

.about-title {
  font-size: clamp(2.5rem, 5.5vw, 4.35rem);
  line-height: 1.02;
}

.about-title span {
  display: block;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.footer-brand {
  max-width: 320px;
}

@media (max-width: 1180px) {
  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: min(100%, 590px);
  }

  .product-video-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-video-heading .section-sub {
    max-width: 720px;
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  nav {
    min-height: 68px;
    height: auto;
    padding: 10px clamp(14px, 4vw, 28px);
  }

  .nav-links {
    justify-content: flex-end;
    gap: 4px;
  }

  .nav-links a {
    padding: 8px 11px;
    font-size: .78rem;
  }

  .page {
    padding-top: 68px;
  }

  .hero {
    min-height: calc(100svh - 68px);
    padding: 70px clamp(18px, 5vw, 40px) 42px;
    align-items: flex-end;
  }

  .hero-restaurant-bg {
    display: none !important;
  }

  .inline-style-4 {
    display: block !important;
    background-image: url('hero-vertical.png') !important;
    background-position: center top !important;
  }

  .inline-style-5 {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.28) 0%,
      rgba(0,0,0,.52) 42%,
      rgba(0,0,0,.86) 100%
    ) !important;
  }

  .hero-content {
    width: 100%;
    max-width: 620px;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8.8vw, 3.45rem);
  }

  .hero-sub {
    max-width: 100%;
  }

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

  .hero-stats,
  .inline-style-9 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .steps-grid,
  .why-grid,
  .plans-grid,
  .testi-grid,
  .team-grid,
  .about-grid,
  .contact-wrapper,
  .form-row {
    grid-template-columns: 1fr !important;
  }

  .about-hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-hero-content {
    width: min(100%, 620px);
    min-width: 0;
    padding-right: 0;
  }

  .about-hero-visual {
    display: none !important;
  }

  .product-video-shell {
    border-radius: 18px;
  }
}

@media (max-width: 620px) {
  .logo img,
  .footer-brand .logo img {
    height: 32px;
  }

  nav {
    align-items: center;
    gap: 8px;
  }

  .nav-links {
    flex-wrap: nowrap;
  }

  .nav-links a {
    border-radius: 999px;
    padding: 7px 8px;
    font-size: clamp(.68rem, 2.8vw, .76rem);
  }

  .nav-cta {
    padding-inline: 10px !important;
  }

  section,
  .about-body,
  .contact-wrapper,
  .cta-banner,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 30px;
  }

  .hero h1,
  .about-hero h1,
  .contact-info h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    letter-spacing: 0;
  }

  .about-title {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.25rem);
    letter-spacing: 0;
  }

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

  .hero-stats,
  .inline-style-9 {
    grid-template-columns: 1fr !important;
  }

  .product-video-section {
    padding-top: 52px;
  }

  .product-video-shell {
    width: calc(100vw - 36px);
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(17,17,16,.14);
  }

  .product-video {
    object-fit: contain;
  }

  .contact-form,
  .about-visual-box {
    padding: 24px 18px;
  }

  .metric-row {
    align-items: flex-start;
    gap: 14px;
  }

  .metric-val {
    flex: 0 0 auto;
  }

  .footer-top {
    gap: 26px;
  }
}

@media (max-width: 390px) {
  .nav-links a {
    padding-inline: 6px;
  }

  .nav-cta {
    padding-inline: 8px !important;
  }

  .hero-badge {
    max-width: 100%;
  }

  .btn-primary,
  .btn-secondary,
  .plan-btn {
    width: 100%;
  }
}

/* =========================================================
   NAVBAR PRO
   ========================================================= */
#navbar {
  height: 82px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(17,17,16,.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}

#navbar.scrolled {
  height: 72px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 38px rgba(17,17,16,.08);
}

.nav-shell {
  width: min(100%, 1320px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
  transition: transform .3s ease;
}

.nav-brand:hover img {
  transform: rotate(-5deg) scale(1.04);
}

.nav-brand-copy {
  display: grid;
  justify-items: start;
  line-height: 1;
}

.nav-brand-copy strong {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-brand-copy small {
  margin-top: 4px;
  color: var(--gray-text);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-menu {
  display: contents;
}

.nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(17,17,16,.06);
  border-radius: 999px;
  background: rgba(243,241,238,.74);
}

.nav-links a {
  position: relative;
  display: block;
  padding: 10px 17px;
  border-radius: 999px;
  color: #65625c;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease;
}

.nav-links a:hover {
  color: var(--black);
  background: rgba(255,255,255,.65);
}

.nav-links a.active {
  color: var(--black);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(17,17,16,.08);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%);
}

.nav-whatsapp {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 9px 24px rgba(17,17,16,.16);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.nav-whatsapp:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(242,106,27,.24);
}

.nav-whatsapp-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37d67a;
  box-shadow: 0 0 0 4px rgba(55,214,122,.14);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--black);
  transition: transform .25s ease, opacity .2s ease;
}

.page {
  padding-top: 82px;
}

@media (max-width: 900px) {
  #navbar,
  #navbar.scrolled {
    height: 72px;
    min-height: 72px;
    padding: 0 20px;
  }

  .nav-shell {
    gap: 14px;
  }

  .nav-brand-copy {
    display: none;
  }

  .nav-links a {
    padding-inline: 13px;
  }

  .nav-whatsapp {
    padding-inline: 16px;
  }

  .page {
    padding-top: 72px;
  }
}

@media (max-width: 760px) {
  #navbar,
  #navbar.scrolled {
    padding: 0 16px;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .nav-brand-copy {
    display: grid;
  }

  .nav-brand img {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

  .menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(17,17,16,.08);
    border-radius: 8px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 50px rgba(17,17,16,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }

  .menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    grid-column: auto;
    display: grid;
    gap: 3px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 6px;
    font-size: .92rem;
  }

  .nav-links a.active::after {
    left: auto;
    right: 14px;
    bottom: 50%;
    transform: translateY(50%);
  }

  .nav-whatsapp {
    grid-column: auto;
    justify-self: stretch;
    justify-content: center;
    min-height: 46px;
    border-radius: 6px;
    background: var(--orange);
    box-shadow: none;
  }
}

/* =========================================================
   SOLUCIÓN A TU MEDIDA
   ========================================================= */
.tailored {
  position: relative;
  overflow: hidden;
  padding-top: 104px;
  padding-bottom: 104px;
  background: #111110;
  color: var(--white);
}

.tailored::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  height: 3px;
  background: var(--orange);
}

.tailored-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .72fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  margin-bottom: 72px;
}

.tailored .section-label {
  color: var(--orange);
}

.tailored h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.tailored-intro-copy {
  padding-bottom: 4px;
}

.tailored-intro-copy p {
  margin-bottom: 28px;
  color: rgba(255,255,255,.64);
  font-size: 1rem;
  line-height: 1.75;
}

.tailored-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.tailored-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242,106,27,.26);
}

.tailored-cta span {
  font-size: 1.1rem;
  transition: transform .25s ease;
}

.tailored-cta:hover span {
  transform: translate(2px, -2px);
}

.tailored-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.tailored-step {
  min-width: 0;
  padding: 44px clamp(24px, 3vw, 44px) 48px;
  transition: background .3s ease, transform .3s ease;
}

.tailored-step:first-child {
  padding-left: 0;
}

.tailored-step:last-child {
  padding-right: 0;
}

.tailored-step + .tailored-step {
  border-left: 1px solid rgba(255,255,255,.13);
}

.tailored-step:hover {
  background: rgba(255,255,255,.025);
}

.tailored-number {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.tailored-step h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}

.tailored-step p {
  max-width: 360px;
  color: rgba(255,255,255,.54);
  font-size: .92rem;
  line-height: 1.7;
}

.tailored-includes {
  display: grid;
  grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
  padding-top: 58px;
}

.tailored-includes-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tailored-includes-heading h3 {
  max-width: 360px;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.tailored-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  list-style: none;
}

.tailored-includes li {
  position: relative;
  padding: 15px 0 15px 26px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}

.tailored-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

@media (max-width: 900px) {
  .tailored {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .tailored-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 54px;
  }

  .tailored-intro-copy {
    max-width: 650px;
  }

  .tailored-steps {
    grid-template-columns: 1fr;
  }

  .tailored-step,
  .tailored-step:first-child,
  .tailored-step:last-child {
    padding: 32px 0 34px;
  }

  .tailored-step + .tailored-step {
    border-top: 1px solid rgba(255,255,255,.13);
    border-left: 0;
  }

  .tailored-number {
    margin-bottom: 22px;
  }

  .tailored-step p {
    max-width: 620px;
  }

  .tailored-includes {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 46px;
  }
}

@media (max-width: 560px) {
  .tailored {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .tailored h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .tailored h2 br {
    display: none;
  }

  .tailored-cta {
    width: 100%;
    padding-inline: 18px;
    white-space: normal;
    text-align: center;
  }

  .tailored-includes ul {
    grid-template-columns: 1fr;
  }
}
