:root {
      --bg-deep: #f8fafc;
      --bg-card: #ffffff;
      --bg-elevated: #ffffff;
      --border: rgba(6, 182, 212, 0.2);
      --accent: #0891b2;
      --accent-dim: rgba(6, 182, 212, 0.12);
      --accent-glow: rgba(6, 182, 212, 0.25);
      --gold: #b45309;
      --gold-soft: rgba(251, 191, 36, 0.2);
      --savings-green: #047857;
      --savings-bg: rgba(52, 211, 153, 0.15);
      --badge: #ea580c;
      --text: #0f172a;
      --text-muted: #64748b;
      --radius: 16px;
      --radius-lg: 24px;
      --font-display: 'Outfit', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.5;
      background: var(--bg-deep);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Background atmosphere */
    .bg-atmosphere {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(251, 191, 36, 0.06) 0%, transparent 45%),
        linear-gradient(180deg, var(--bg-deep) 0%, #f1f5f9 100%);
    }
    .bg-atmosphere::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.5;
    }

    .wrapper { position: relative; z-index: 1; }

    /* Header — sales strip */
    /*header {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      padding: 14px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }*/
    .logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
      color: var(--text);
    }
    .logo span { color: var(--accent); }
    .header-tagline {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .header-cta-mini {
      font-size: 0.75rem;
      color: var(--accent);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* Hero — conversion headline */
    .hero {
      text-align: center;
      padding: 10px 20px 26px;
    }
    .hero .eyebrow {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent);
      margin-bottom: 12px;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(1.85rem, 5vw, 2.6rem);
      font-weight: 700;
      margin: 0;
      letter-spacing: -0.02em;
      line-height: 1.2;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.1s forwards;
    }
    .hero .sub {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-muted);
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.2s forwards;
    }
    .hero .sub span { display: flex; align-items: center; gap: 6px; }
    .hero .sub svg { width: 18px; height: 18px; color: var(--accent); }

    /* Container */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px 60px;
    }

    .section-title {
      font-family: calibri;
      font-size: 1.2rem;
      margin-bottom: 18px;
      color: var(--text);
      letter-spacing: -0.01em;
    }

    /* Plan cards — sales grid */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 8px;
    }
    .card {
      background: var(--bg-card);
      border-radius: var(--radius);
      padding: 22px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: fadeUp 0.5s ease forwards;
    }
    .card:nth-child(1) { animation-delay: 0.15s; }
    .card:nth-child(2) { animation-delay: 0.2s; }
    .card:nth-child(3) { animation-delay: 0.25s; }
    .card:nth-child(4) { animation-delay: 0.3s; }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      border-color: var(--accent);
    }
    .card.active {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px var(--accent), 0 20px 40px rgba(6, 182, 212, 0.12);
      transform: translateY(-2px);
    }
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.2s ease;
    }
    .card.active::before { opacity: 1; }

    .badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--badge);
      color: #fff;
      padding: 5px 10px;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-radius: 6px;
    }
    .card h4 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 0 8px 0;
      color: var(--text);
    }
    .strike {
      text-decoration: line-through;
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .price {
      font-size: 1.5rem;
      font-weight: 800;
      margin-top: 6px;
      color: var(--accent);
      font-family: var(--font-display);
    }
    .price span { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }

    /* OTT Bundle — optional plan choice */
    .ott-section {
      margin-top: 32px;
    }
    .ott-section .section-title {
      margin-bottom: 8px;
    }
    .ott-section .section-sub {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .ott-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 12px;
    }
    .ott-card {
      background: var(--bg-card);
      border-radius: 12px;
      padding: 16px;
      border: 2px solid #e2e8f0;
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      position: relative;
      text-align: center;
    }
    .ott-card:hover {
      border-color: rgba(6, 182, 212, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }
    .ott-card.active {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px var(--accent), 0 8px 24px rgba(6, 182, 212, 0.12);
      background: linear-gradient(180deg, rgba(6, 182, 212, 0.04) 0%, var(--bg-card) 100%);
    }
    .ott-card .ott-name {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 4px 0;
    }
    .ott-card .ott-apps {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .ott-card .ott-price {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--accent);
    }
    .ott-card .ott-price span { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }

    /* Add-on: IPTV tick option */
    .addon-row {
      margin-top: 28px;
      padding: 18px 20px;
      background: var(--bg-card);
      border-radius: var(--radius);
      border: 2px solid #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .addon-row:hover { border-color: rgba(6, 182, 212, 0.3); }
    .addon-row.checked {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px var(--accent);
    }
    .addon-row label {
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: pointer;
      flex: 1;
      min-width: 0;
    }
    .addon-check {
      width: 24px;
      height: 24px;
      border-radius: 8px;
      border: 2px solid #cbd5e1;
      background: #fff;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }
    .addon-row.checked .addon-check {
      background: var(--accent);
      border-color: var(--accent);
    }
    .addon-check svg {
      width: 14px;
      height: 14px;
      color: #fff;
    }
    .addon-label-text {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 1rem;
      color: var(--text);
    }
    .addon-price {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--accent);
    }

    /* Duration — best value emphasis */
    .duration {
      margin-top: 36px;
    }
    .duration-options {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .duration-btn {
      padding: 12px 18px;
      border-radius: 12px;
      border: 2px solid #e2e8f0;
      background: var(--bg-card);
      color: var(--text-muted);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .duration-btn:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .duration-btn.active {
      background: var(--accent-dim);
      border-color: var(--accent);
      color: var(--accent);
    }
    .duration-btn.best-value {
      background: var(--gold-soft);
      border-color: #f59e0b;
      color: #b45309;
    }
    .duration-btn.best-value.active {
      background: rgba(251, 191, 36, 0.25);
      border-color: #f59e0b;
      color: #b45309;
    }

    /* Summary — conversion box */
    .summary {
      background: var(--bg-elevated);
      margin-top: 40px;
      padding: 32px;
      border-radius: var(--radius-lg);
      border: 1px solid #e2e8f0;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
      opacity: 0;
      animation: fadeUp 0.5s ease 0.35s forwards;
    }
    .summary h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      margin-top: 0;
      margin-bottom: 20px;
      color: var(--text);
    }
    .breakdown p {
      display: flex;
      justify-content: space-between;
      margin: 10px 0;
      font-size: 0.95rem;
      color: var(--text-muted);
    }
    .breakdown p span:last-child { color: var(--text); font-weight: 600; }

    .saving {
      background: var(--savings-bg);
      color: var(--savings-green);
      padding: 14px 18px;
      border-radius: 12px;
      margin-top: 16px;
      font-weight: 700;
      font-size: 0.95rem;
      border: 1px solid rgba(52, 211, 153, 0.35);
    }

    .total {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid #e2e8f0;
      font-size: 1.6rem;
      font-weight: 800;
      font-family: var(--font-display);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text);
    }
    .total span:last-child { color: var(--accent); font-size: 1.75rem; }

    .cta {
      margin-top: 24px;
      width: 100%;
      padding: 18px 24px;
      font-size: 1rem;
      font-weight: 700;
      font-family: var(--font-body);
      background: linear-gradient(135deg, var(--accent) 0%, #0e7490 100%);
      color: #fff;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(6, 182, 212, 0.35);
    }
    .cta:active { transform: translateY(0); }

    .trust {
      font-size: 0.875rem;
      margin-top: 16px;
      color: var(--text);
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .trust span { display: flex; align-items: center; gap: 6px; }
    .trust .tick { color: var(--savings-green); font-weight: 700; }

    /* Urgency strip (optional, subtle) */
    .urgency {
      text-align: center;
      font-size: 0.8125rem;
      color: var(--text-muted);
      margin-top: 12px;
    }
    .urgency strong { color: #b45309; }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Modal popup — full viewport overlay */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      min-width: 100%;
      min-height: 100%;
      background: rgba(15, 23, 42, 0.5);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      box-sizing: border-box;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      max-width: 420px;
      width: 100%;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      border: 1px solid #e2e8f0;
    }
    .modal-box h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0 0 20px 0;
      color: var(--text);
    }
    .form-group {
      margin-bottom: 16px;
    }
    .form-group label {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
    }
    .form-group label .optional { font-weight: 500; color: var(--text-muted); }
    .form-group input {
      width: 100%;
      padding: 12px 14px;
      border: 2px solid #e2e8f0;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 1rem;
      transition: border-color 0.2s ease;
    }
    .form-group input:focus {
      outline: none;
      border-color: var(--accent);
    }
    .form-group input.error { border-color: #dc2626; }
    .form-group .hint {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 4px;
    }
    .form-group .error-msg {
      font-size: 0.8rem;
      color: #dc2626;
      margin-top: 4px;
    }
    .modal-cta {
      width: 100%;
      margin-top: 8px;
      padding: 14px 24px;
      font-size: 1rem;
      font-weight: 700;
      font-family: var(--font-body);
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: #fff;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .modal-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
    }
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-muted);
      cursor: pointer;
      line-height: 1;
      padding: 4px;
    }
    .modal-close:hover { color: var(--text); }
    .modal-box { position: relative; }

    @media (max-width: 600px) {
      .hero { padding: 10px 16px 28px; }
      .total { font-size: 1.35rem; }
      .total span:last-child { font-size: 1.5rem; }
      .summary { padding: 24px; }
      .trust { flex-direction: column; gap: 8px; }
    }
	
	
	
	.contact-card {
  max-width: 100%;
  background: #ffffff;
  padding: 25px;
  border-radius: 0px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-family: var(--font-body);
}

.contact-card h3 {
  margin-bottom: 20px;
  color: #ED5A0A;
  text-align: center;font-size:2em;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
}

.contact-item:hover {
  background: #f5f5f5;
}
.contact-item a{text-decoration:none;}

.icon {
  font-size: 20px;
  width: 35px;
  height: 35px;
  background: #ffe6ea;
  color: #e60023;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-item p {
  margin: 0;
  font-size: 17px;
  color: #333;
}