.elementor-7088 .elementor-element.elementor-element-7704441{--display:flex;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS */:root {
    --bg: #f5f7fb;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.08);

    --primary: #0f766e;
    --primary-dark: #0b5c56;
    --primary-soft: rgba(15, 118, 110, 0.10);

    --gold: #f59e0b;
    --gold-soft: rgba(245, 158, 11, 0.14);

    --diamond: #4f46e5;
    --diamond-soft: rgba(79, 70, 229, 0.14);

    --silver: #94a3b8;
    --silver-soft: rgba(148, 163, 184, 0.14);

    --success: #22c55e;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    --radius: 24px;
    --container: 1220px;
    --transition: 280ms cubic-bezier(.2,.8,.2,1);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
      radial-gradient(circle at top left, rgba(79, 70, 229, 0.09), transparent 28%),
      radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 24%),
      linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  }

  .pricing-section {
    padding: 72px 20px 90px;
  }

  .container {
    max-width: var(--container);
    margin: 0 auto;
  }

  .hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 10px 30px rgba(15,23,42,0.05);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
  }

  .hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 4vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hero p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--muted);
  }

  .hero-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
  }

  .hero-point {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
  }

  .controls-bar{
    max-width: 1100px;
    margin: 34px auto 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:18px 20px;
    border-radius:24px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(255,255,255,.85);
    box-shadow:
      0 10px 30px rgba(15,23,42,.06),
      inset 0 1px 0 rgba(255,255,255,.7);
    backdrop-filter: blur(14px);
  }

  .control-group{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
  }

  .control-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:#64748b;
    white-space:nowrap;
  }

  .segmented{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px;
    border-radius:18px;
    background:rgba(15,23,42,.04);
    border:1px solid rgba(15,23,42,.06);
  }

  .segmented-btn{
    border:none;
    background:#015d71;
    background-color: #015d71 !important;
    color:#fff;
    padding:12px 18px;
    border-radius:14px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:
      background .28s ease,
      color .28s ease,
      transform .28s ease,
      box-shadow .28s ease;
    white-space:nowrap;
  }

  .segmented-btn:hover{
    background:#82c61b!important;
  }

  .segmented-btn.active{
    background:linear-gradient(135deg,#82c61b,#5f9113)!important;
    color:#fff;
    box-shadow:0 10px 24px rgba(15,23,42,.18);
  }

  .segmented-btn.active.product{
    background:linear-gradient(135deg,#82c61b,#5f9113)!important;
    box-shadow:0 10px 24px rgba(15,118,110,.24);
  }

  .billing-hint{
    margin: 0 auto 30px;
    text-align:center;
    font-size:14px;
    color:#64748b;
    min-height:20px;
  }

  .panel {
    display: none;
    animation: fadeIn 0.35s ease;
  }

  .panel.active {
    display: block;
  }

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

  .pricing-grid.two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }

  .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(14px);
    transform: translateY(0) scale(1);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), opacity .25s ease;
    isolation: isolate;
  }

  .card.price-switch {
    opacity: .75;
    transform: translateY(4px) scale(.995);
  }

  .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.06));
    z-index: -2;
  }

  .card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: -1;
    pointer-events: none;
  }

  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(15,23,42,0.14);
  }

  .card.featured {
    transform: scale(1.03);
    border-color: rgba(79, 70, 229, 0.32);
    box-shadow: 0 30px 70px rgba(79, 70, 229, 0.18);
  }

  .card.featured:hover {
    transform: translateY(-10px) scale(1.04);
  }

  .card-top {
    padding: 26px 26px 22px;
    position: relative;
    overflow: hidden;
  }

  .card-top.silver {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  }

  .card-top.gold {
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    color: white;
  }

  .card-top.diamond {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
  }

  .card-top.rest-cocinero {
    background: linear-gradient(135deg, #0f766e, #0d9488);
    color: white;
  }

  .card-top.rest-chef {
    background: linear-gradient(135deg, #0f172a, #0f766e);
    color: white;
  }

  .badge-row {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    color: inherit;
    backdrop-filter: blur(8px);
  }

  .badge.dark {
    background: rgba(15,23,42,0.06);
    color: #0f172a;
    border-color: rgba(15,23,42,0.08);
  }

  .badge.promo {
    background: #fde68a;
    color: #1e3a5f;
    border-color: transparent;
  }

  .badge.popular {
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    color: inherit;
  }

  .badge-icon,
  .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .badge-icon-svg {
    width: 14px;
    height: 14px;
    display: block;
  }

  .icon-check-svg {
    width: 12px;
    height: 12px;
    display: block;
  }

  .plan-name {
    margin: 0 0 8px;
    font-size: 1.55rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .plan-desc {
    margin: 0;
    font-size: 0.98rem;
    opacity: 0.9;
  }

  .card-body {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: rgba(255,255,255,0.76);
  }

  .old-price {
    min-height: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    opacity: .8;
    text-decoration: line-through;
    color: inherit;
  }

  .price-row {
    display: flex;
    align-items: end;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .price {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
  }

  .currency {
    font-size: 1.25rem;
    margin-right: 4px;
    font-weight: 800;
  }

  .period {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 700;
    padding-bottom: 6px;
  }

  .featured .period {
    color: #64748b;
  }

  .price-note {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--line);
    color: #475569;
    font-size: 13px;
    font-weight: 700;
  }

  .card.featured .price-note {
    background: var(--diamond-soft);
    border-color: rgba(79, 70, 229, 0.15);
    color: #4338ca;
  }

  .highlight {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.65;
    color: #334155;
  }

  .highlight strong {
    color: #0f172a;
  }

  .features-title {
    margin: 2px 0 14px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
  }

  .features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 12px;
  }

  .features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #334155;
    line-height: 1.5;
    font-size: 15px;
  }

  .features li.is-disabled {
    color: #b9bcc3;
  }

  .features li.is-disabled .check {
    background: #e5e7eb;
    color: #c9cdd4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .features li.is-disabled .check-icon {
    opacity: 1;
  }

  .features li.is-disabled .check-icon svg,
  .features li.is-disabled .check-icon .icon-check-svg {
    opacity: 1;
  }

  .check {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, 0.14);
    color: var(--success);
    margin-top: 1px;
  }

  .check.off {
    background: #e5e7eb;
    color: #cbd5e1;
  }

  .check.off .icon-check-svg {
    opacity: .45;
  }

  .muted-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
  }

  .muted-link:hover {
    color: var(--text);
  }

  .cta-group {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    width: 100%;
    border-radius: 16px;
    padding: 16px 18px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -.01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    text-decoration: none;
    text-align: center;
  }

  .btn-primary {
    background: #0f172a;
    color: white;
    box-shadow: 0 18px 30px rgba(15,23,42,0.16);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 38px rgba(15,23,42,0.2);
  }

  .btn-gold {
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    color: white;
    box-shadow: 0 20px 34px rgba(245, 158, 11, 0.28);
  }

  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 40px rgba(245, 158, 11, 0.34);
  }

  .btn-teal {
    background: #82c61b;
    border: 0px solid rgba(98, 154, 18, 0.9);
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    font-size:16.5px;
    transition: all 0.2s ease;
    padding:20px;
  }

  .btn-teal:hover {
    background: #6eaf12;
    transform: translateY(-1px);
  }

  .microcopy {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
  }

  .compare-box {
    margin-top: 34px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: var(--shadow);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(14px);
  }

  .compare-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
  }

  .compare-header h3 {
    margin: 0;
    font-size: 1.05rem;
  }

  .compare-header p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
  }

  .toggle-compare {
    appearance: none;
    border: 1px solid var(--line);
    background: white;
    background-color: #014f60!important;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--transition);
  }

  .toggle-compare:hover {
    background: #f8fafc;
  }

  .compare-content {
    display: none;
    padding: 0 24px 24px;
  }

  .compare-content.open {
    display: block;
    animation: fadeIn .28s ease;
  }

  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
  }

  .compare-table th,
  .compare-table td {
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .compare-table th {
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
  }

  .compare-table td {
    color: #334155;
  }

  .compare-table td strong {
    color: #0f172a;
  }

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

  .trust-item {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: 0 12px 30px rgba(15,23,42,0.05);
  }

  .trust-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .trust-item span {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
  }

  .pulse {
    position: relative;
  }

  .pulse::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 1px solid rgba(79, 70, 229, 0.28);
    animation: pulse 2.4s infinite;
    pointer-events: none;
  }

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

  .reveal.show {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0% {
      opacity: 0.9;
      transform: scale(1);
    }
    70% {
      opacity: 0;
      transform: scale(1.035);
    }
    100% {
      opacity: 0;
      transform: scale(1.05);
    }
  }

  @media (max-width: 1100px) {
    .pricing-grid,
    .pricing-grid.two,
    .trust-row {
      grid-template-columns: 1fr;
    }

    .card.featured {
      transform: scale(1);
    }

    .card.featured:hover {
      transform: translateY(-8px) scale(1);
    }
  }

  @media (max-width: 900px){
    .controls-bar{
      flex-direction:column;
      align-items:stretch;
      gap:14px;
    }

    .control-group{
      justify-content:space-between;
      flex-wrap:wrap;
    }
  }

  @media (max-width: 760px) {
    .pricing-section {
      padding: 54px 16px 70px;
    }

    .hero h1 {
      font-size: 2.4rem;
    }

    .price {
      font-size: 2.5rem;
    }

    .compare-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .compare-table {
      font-size: 14px;
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  }

  @media (max-width: 640px){
    .control-group{
      flex-direction:column;
      align-items:stretch;
      gap:10px;
    }

    .segmented{
      width:100%;
      justify-content:space-between;
    }

    .segmented-btn{
      flex:1;
      text-align:center;
      padding:12px 10px;
      font-size:14px;
    }
  }

  @media (max-width: 640px) {
    .controls-bar {
      padding: 12px;
      gap: 10px;
      border-radius: 18px;
    }

    .segmented-btn {
      padding: 10px 8px!important;
      font-size: 13px!important;
      border-radius: 10px;
    }

    .segmented {
      padding: 3px;
      border-radius: 14px;
      background: rgba(15,23,42,0.03);
    }

    .control-label {
      font-size: 10px;
      letter-spacing: .06em;
      opacity: 0.7;
    }

    .pricing-section {
      padding: 42px 14px 56px;
    }

    .hero {
      margin-bottom: 28px;
    }

    .eyebrow {
      font-size: 12px;
      padding: 7px 12px;
      margin-bottom: 16px;
    }

    .hero h1 {
      font-size: 2rem;
      line-height: 1.05;
      letter-spacing: -0.035em;
    }

    .hero p {
      font-size: 0.96rem;
      line-height: 1.6;
    }

    .hero-points {
      gap: 8px;
      margin-top: 18px;
    }

    .hero-point {
      font-size: 12px;
      padding: 8px 10px;
    }

    .controls-bar {
      padding: 14px;
      gap: 12px;
      border-radius: 20px;
    }

    .control-label {
      font-size: 11px;
    }

    .segmented {
      padding: 4px;
      gap: 4px;
      border-radius: 16px;
    }

    .segmented-btn {
      padding: 11px 8px;
      font-size: 13px;
      border-radius: 12px;
    }

    .billing-hint {
      font-size: 13px;
      margin-bottom: 22px;
    }

    .pricing-grid,
    .pricing-grid.two {
      gap: 16px;
    }

    .card,
    .compare-box,
    .trust-item {
      border-radius: 20px;
    }

    .card-top {
      padding: 20px 18px 18px;
    }

    .card-body {
      padding: 18px 18px 20px;
    }

    .badge-row {
      margin-bottom: 14px;
      gap: 6px;
    }

    .badge {
      font-size: 11px;
      padding: 7px 10px;
    }

    .plan-name {
      font-size: 1.3rem;
      line-height: 1.12;
    }

    .plan-desc {
      font-size: 0.9rem;
    }

    .old-price {
      font-size: 12px;
      margin-bottom: 6px;
      min-height: 16px;
    }

    .price-row {
      gap: 6px;
      margin-bottom: 8px;
    }

    .price {
      font-size: 2.2rem;
    }

    .currency {
      font-size: 1rem;
      margin-right: 2px;
    }

    .period {
      font-size: 0.9rem;
      padding-bottom: 4px;
    }

    .price-note {
      font-size: 12px;
      padding: 7px 10px;
      margin-bottom: 14px;
    }

    .highlight {
      font-size: 0.94rem;
      line-height: 1.55;
      margin-bottom: 14px;
    }

    .features-title {
      font-size: 0.9rem;
      margin-bottom: 12px;
    }

    .features {
      gap: 10px;
      margin-bottom: 18px;
    }

    .features li {
      font-size: 14px;
      gap: 10px;
    }

    .check {
      width: 20px;
      height: 20px;
    }

    .muted-link {
      font-size: 13px;
      margin-bottom: 18px;
    }

    .btn {
      padding: 15px 16px;
      font-size: 14px;
      border-radius: 14px;
    }

    .microcopy {
      font-size: 12px;
    }

    .compare-header {
      padding: 18px;
    }

    .compare-header h3 {
      font-size: 1rem;
    }

    .compare-header p {
      font-size: 13px;
    }

    .toggle-compare {
      width: 100%;
      text-align: center;
    }

    .compare-content {
      padding: 0 18px 18px;
    }

    .trust-row {
      gap: 14px;
      margin-top: 18px;
    }

    .trust-item {
      padding: 16px;
    }

    .trust-item strong {
      font-size: 0.95rem;
    }

    .trust-item span {
      font-size: 13px;
      line-height: 1.55;
    }
  }

  @media (max-width: 390px) {
    .hero h1 {
      font-size: 1.8rem;
    }

    .price {
      font-size: 2rem;
    }

    .segmented-btn {
      font-size: 12px;
      padding: 10px 6px;
    }

    .plan-name {
      font-size: 1.2rem;
    }

    .features li {
      font-size: 13px;
    }
  }

  @media (max-width: 640px) {
    .controls-bar {
      padding: 12px;
      gap: 10px;
      border-radius: 18px;
      margin: 24px auto 14px;
    }

    .control-group {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 6px;
      width: 100%;
      min-width: 0;
    }

    .control-label {
      font-size: 10px;
      letter-spacing: 0.06em;
      opacity: 0.75;
      padding-left: 2px;
    }

    .segmented {
      display: flex;
      width: 100%;
      gap: 4px;
      padding: 4px;
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.035);
      min-width: 0;
    }

    .segmented-btn {
      flex: 1 1 0;
      min-width: 0;
      padding: 10px 8px;
      font-size: 13px;
      line-height: 1.2;
      text-align: center;
      border-radius: 12px;
      white-space: normal;
    }
  }

  @media (max-width: 390px) {
    .controls-bar {
      padding: 10px;
      border-radius: 16px;
    }

    .segmented {
      padding: 3px;
      gap: 3px;
    }

    .segmented-btn {
      font-size: 12px;
      padding: 10px 6px;
      border-radius: 10px;
    }
  }/* End custom CSS */