/* DigiCrux Solutions — pricing.php page-specific styles
   Global tokens (colors/fonts/spacing) come from assets/css/style.css */

*{margin:0;padding:0;box-sizing:border-box;}
  body{
    font-family:'Segoe UI', Inter, Arial, sans-serif;
    background:#eef2f7;
  }

  .dc-pricing-hero{
    position:relative;
    padding:60px 24px 56px;
    background:linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 40%, var(--brand-blue) 75%, var(--teal) 130%);
    overflow:hidden;
    text-align:center;
  }
  .dc-pricing-hero::before{
    content:'';
    position:absolute;
    top:-120px; right:-100px;
    width:380px; height:380px;
    background:radial-gradient(circle, rgba(15,191,159,0.28) 0%, transparent 70%);
    border-radius:50%;
    filter:blur(10px);
  }
  .dc-pricing-hero::after{
    content:'';
    position:absolute;
    bottom:-140px; left:-100px;
    width:340px; height:340px;
    background:radial-gradient(circle, rgba(46,111,242,0.3) 0%, transparent 70%);
    border-radius:50%;
    filter:blur(10px);
  }

  .dc-ph-inner{
    position:relative;
    z-index:2;
    max-width:920px;
    margin:0 auto;
  }

  /* Reused partner badge */
  .dc-ph-badge-wrap{
    display:inline-flex;
    opacity:0;
    transform:translateY(24px);
    animation:dcFadeUp 0.7s var(--ease-out) forwards;
  }
  .dc-ph-badge{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:var(--white);
    padding:12px 24px;
    border-radius:var(--radius-md);
    box-shadow:0 12px 30px rgba(0,0,0,0.18);
    margin-bottom:22px;
    transition:transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    cursor:default;
  }
  .dc-ph-badge:hover{
    transform:scale(1.06) translateY(-4px);
    box-shadow:0 20px 45px rgba(0,0,0,0.28);
  }
  .dc-ph-badge-img{
    height:42px;
    width:auto;
    display:block;
    flex-shrink:0;
  }
  .dc-ph-badge-divider{width:1px;height:32px;background:#e2e5ea;}
  .dc-ph-badge-text{text-align:left;}
  .dc-ph-badge-title{font-weight:700;font-size:14.5px;color:var(--navy);line-height:1.3;}
  .dc-ph-badge-sub{font-size:12px;color:var(--text-body);}

  .dc-ph-heading{
    color:#fff;
    font-size:clamp(24px, 3.8vw, 38px);
    font-weight:800;
    line-height:1.25;
    letter-spacing:-0.5px;
    margin-bottom:14px;
    opacity:0;
    transform:translateY(24px);
    animation:dcFadeUp 0.7s var(--ease-out) 0.1s forwards;
  }
  .dc-ph-heading span{
    background:linear-gradient(90deg, var(--wa-green), var(--teal));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  .dc-ph-sub{
    color:rgba(255,255,255,0.85);
    font-size:15px;
    max-width:480px;
    margin:0 auto 22px;
    line-height:1.55;
    opacity:0;
    transform:translateY(24px);
    animation:dcFadeUp 0.7s var(--ease-out) 0.18s forwards;
  }

  .dc-ph-note{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.96);
    color:var(--navy);
    font-size:13px;
    font-weight:600;
    padding:9px 18px;
    border-radius:var(--radius-pill);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    margin-bottom:32px;
    opacity:0;
    transform:translateY(24px);
    animation:dcFadeUp 0.7s var(--ease-out) 0.26s forwards;
  }
  .dc-ph-note svg{width:15px;height:15px;flex-shrink:0;}

  .dc-ph-chips{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
  }
  .dc-ph-chip{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    border-radius:var(--radius-md);
    padding:15px 18px;
    text-align:left;
    box-shadow:0 10px 24px rgba(6,20,44,0.14);
    opacity:0;
    transform:translateY(22px);
    animation:dcFadeUp 0.6s var(--ease-out) forwards;
    transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  }
  .dc-ph-chip:nth-child(1){animation-delay:.34s;}
  .dc-ph-chip:nth-child(2){animation-delay:.4s;}
  .dc-ph-chip:nth-child(3){animation-delay:.46s;}
  .dc-ph-chip:nth-child(4){animation-delay:.52s;}
  .dc-ph-chip:nth-child(5){animation-delay:.58s;}
  .dc-ph-chip:nth-child(6){animation-delay:.64s;}
  .dc-ph-chip:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 32px rgba(6,20,44,0.22);
  }
  .dc-ph-chip-icon{
    width:34px;height:34px;
    border-radius:9px;
    flex-shrink:0;
    display:flex;align-items:center;justify-content:center;
    transition:transform .4s var(--ease-out);
  }
  .dc-ph-chip:hover .dc-ph-chip-icon{transform:scale(1.14) rotate(-6deg);}
  .dc-ph-chip-icon svg{width:17px;height:17px;}
  .dc-ph-chip-icon.i-amber{background:rgba(242,144,11,0.12);}
  .dc-ph-chip-icon.i-blue{background:rgba(46,111,242,0.12);}
  .dc-ph-chip-icon.i-green{background:rgba(37,211,102,0.12);}
  .dc-ph-chip-icon.i-purple{background:rgba(139,92,246,0.12);}
  .dc-ph-chip-icon.i-red{background:rgba(232,53,90,0.12);}
  .dc-ph-chip-icon.i-teal{background:rgba(15,191,159,0.14);}
  .dc-ph-chip-label{
    font-size:13.5px;
    font-weight:700;
    color:var(--navy);
  }

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:768px){
    .dc-pricing-hero{padding:44px 18px 40px;}
    .dc-ph-heading{font-size:26px;}
    .dc-ph-sub{font-size:13.5px;}
    .dc-ph-chips{grid-template-columns:1fr 1fr; gap:10px;}
    .dc-ph-chip{padding:12px 14px;}
    .dc-ph-chip-label{font-size:12.5px;}
  }
  @media (max-width:480px){
    .dc-ph-badge{flex-wrap:wrap; justify-content:center; text-align:center; padding:12px 18px;}
    .dc-ph-badge-divider{display:none;}
    .dc-ph-badge-text{text-align:center;}
    .dc-ph-chips{grid-template-columns:1fr;}
    .dc-ph-note{font-size:12px; padding:8px 14px; text-align:left;}
  }

:root{
    --navy:#0B1F3A;
    --navy-2:#122A4D;
    --brand-blue:#2E6FF2;
    --brand-blue-dark:#1D4FC4;
    --teal:#0FBF9F;
    --wa-green:#25D366;
    --red:#E8355A;
    --text-body:#5A6478;
    --text-light:#8A93A6;
    --border-soft:rgba(11,31,58,0.07);
    --white:#ffffff;
    --radius-lg:16px;
    --radius-md:10px;
    --ease-out: cubic-bezier(.22,.61,.36,1);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{
    font-family:'Segoe UI', Inter, Arial, sans-serif;
    background:#F6F8FC;
    -webkit-font-smoothing:antialiased;
  }

  .dc-pt-section{
    position:relative;
    padding:80px 20px 88px;
    background:#F6F8FC;
    overflow:hidden;
  }

  /* subtle decorative texture, not colorful, just depth */
  .dc-pt-section::before{
    content:'';
    position:absolute;
    top:-180px; left:50%;
    transform:translateX(-50%);
    width:900px; height:420px;
    background:radial-gradient(ellipse at center, rgba(46,111,242,0.06) 0%, transparent 70%);
    pointer-events:none;
  }
  .dc-pt-dotgrid{
    position:absolute;
    top:40px; right:6%;
    width:140px; height:140px;
    background-image:radial-gradient(rgba(11,31,58,0.09) 1.4px, transparent 1.4px);
    background-size:14px 14px;
    opacity:.5;
    pointer-events:none;
  }

  .dc-pt-inner{
    position:relative;
    max-width:1120px;
    margin:0 auto;
    z-index:2;
  }

  .dc-pt-head{
    text-align:center;
    margin-bottom:34px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
  }
  .dc-pt-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:6px;
    width:fit-content;
    font-size:11.5px;
    font-weight:700;
    color:var(--brand-blue);
    background:rgba(46,111,242,0.08);
    padding:6px 14px;
    border-radius:999px;
    letter-spacing:.4px;
    margin-bottom:16px;
  }
  .dc-pt-eyebrow svg{width:12px;height:12px;}
  .dc-pt-title{
    font-size:clamp(26px, 3.4vw, 36px);
    font-weight:800;
    color:var(--navy);
    letter-spacing:-0.6px;
    margin-bottom:12px;
    line-height:1.2;
  }
  .dc-pt-title span{
    background:linear-gradient(90deg, var(--brand-blue), var(--teal));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .dc-pt-sub{
    font-size:15px;
    color:var(--text-body);
    max-width:460px;
    margin:0 auto;
    line-height:1.6;
  }

  /* Toggle */
  .dc-pt-toggle-wrap{
    display:flex;
    justify-content:center;
    margin-bottom:44px;
    opacity:0;
    transform:translateY(14px);
    animation:dcFadeUp .55s var(--ease-out) .08s forwards;
  }
  .dc-pt-toggle{
    position:relative;
    display:inline-flex;
    background:#fff;
    border:1px solid var(--border-soft);
    border-radius:999px;
    padding:4px;
    box-shadow:0 4px 14px rgba(11,31,58,0.06);
  }
  .dc-pt-toggle-pill{
    position:absolute;
    top:4px; left:4px;
    height:calc(100% - 8px);
    background:var(--brand-blue);
    border-radius:999px;
    transition:transform .35s var(--ease-out), width .35s var(--ease-out);
    width:0;
  }
  .dc-pt-toggle-btn{
    position:relative;
    z-index:2;
    border:none;
    background:transparent;
    padding:10px 22px;
    font-size:13px;
    font-weight:700;
    color:var(--text-body);
    cursor:pointer;
    border-radius:999px;
    transition:color .3s var(--ease-out), background .25s var(--ease-out);
    display:flex;
    align-items:center;
    gap:7px;
    font-family:inherit;
    white-space:nowrap;
  }
  .dc-pt-toggle-btn:not(.active):hover{
    background:rgba(46,111,242,0.08);
    color:var(--brand-blue);
  }
  .dc-pt-toggle-btn.active{color:#fff;}
  .dc-pt-save-badge{
    position:absolute;
    top:-24px;
    left:50%;
    transform:translateX(-50%);
    background:var(--wa-green);
    color:#fff;
    font-size:10px;
    font-weight:800;
    padding:3px 10px;
    border-radius:999px;
    white-space:nowrap;
    box-shadow:0 4px 10px rgba(37,211,102,0.35);
    transition:background .3s var(--ease-out), color .3s var(--ease-out);
  }
  .dc-pt-save-badge::after{
    content:'';
    position:absolute;
    bottom:-4px;
    left:50%;
    transform:translateX(-50%);
    width:0; height:0;
    border-left:4px solid transparent;
    border-right:4px solid transparent;
    border-top:4px solid var(--wa-green);
  }

  /* Plan cards */
  .dc-pt-plans{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
    margin-bottom:56px;
    align-items:stretch;
  }
  .dc-pt-plan{
    position:relative;
    background:#fff;
    border-radius:var(--radius-lg);
    padding:28px 26px 26px;
    border:1px solid var(--border-soft);
    box-shadow:0 8px 22px rgba(11,31,58,0.05);
    opacity:0;
    transform:translateY(22px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
    transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
    display:flex;
    flex-direction:column;
  }
  .dc-pt-plan:nth-child(1){animation-delay:.16s;}
  .dc-pt-plan:nth-child(2){animation-delay:.22s;}
  .dc-pt-plan:nth-child(3){animation-delay:.28s;}
  .dc-pt-plan:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(11,31,58,0.1);
    border-color:rgba(11,31,58,0.14);
  }
  .dc-pt-plan.featured{
    border:1.5px solid transparent;
    background:linear-gradient(#fff,#fff) padding-box,
               linear-gradient(135deg, var(--brand-blue), var(--teal)) border-box;
    box-shadow:0 16px 36px rgba(46,111,242,0.14);
  }
  .dc-pt-plan.featured:hover{
    box-shadow:0 24px 46px rgba(46,111,242,0.2);
  }

  .dc-pt-plan-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px;
  }
  .dc-pt-plan-icon{
    width:40px;height:40px;
    border-radius:11px;
    display:flex;align-items:center;justify-content:center;
    background:rgba(11,31,58,0.05);
    transition:transform .4s var(--ease-out);
  }
  .dc-pt-plan:hover .dc-pt-plan-icon{transform:scale(1.1) rotate(-6deg);}
  .dc-pt-plan.featured .dc-pt-plan-icon{background:rgba(46,111,242,0.1);}
  .dc-pt-plan-icon svg{width:20px;height:20px;}
  .dc-pt-ribbon{
    font-size:10.5px;
    font-weight:800;
    color:#fff;
    background:linear-gradient(120deg, var(--brand-blue), var(--teal));
    padding:5px 12px;
    border-radius:999px;
    letter-spacing:.3px;
  }
  .dc-pt-plan-name{
    font-size:17px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:4px;
  }
  .dc-pt-plan-tagline{
    font-size:12.5px;
    color:var(--text-light);
    margin-bottom:20px;
  }
  .dc-pt-price{
    display:flex;
    align-items:baseline;
    gap:4px;
    margin-bottom:2px;
  }
  .dc-pt-price-amt{
    font-size:34px;
    font-weight:800;
    color:var(--navy);
    letter-spacing:-0.6px;
    transition:opacity .2s var(--ease-out);
  }
  .dc-pt-price-period{
    font-size:13px;
    color:var(--text-light);
    margin-bottom:6px;
  }
  .dc-pt-price-annual-note{
    font-size:12px;
    color:#0A8A70;
    font-weight:700;
    margin-bottom:20px;
    min-height:16px;
  }

  .dc-pt-feature-mini{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:24px;
    flex:1;
  }
  .dc-pt-feature-mini-item{
    display:flex;
    align-items:center;
    gap:9px;
    font-size:13px;
    color:var(--text-body);
  }
  .dc-pt-feature-mini-item svg{width:15px;height:15px;flex-shrink:0;}

  .dc-pt-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    width:100%;
    background:#fff;
    color:var(--navy);
    font-weight:700;
    font-size:13.5px;
    padding:13px 20px;
    border-radius:var(--radius-md);
    border:1.5px solid var(--border-soft);
    cursor:pointer;
    font-family:inherit;
    transition:background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out), transform .3s var(--ease-out);
  }
  .dc-pt-cta:hover{
    background:var(--navy);
    color:#fff;
    border-color:var(--navy);
    transform:translateY(-2px);
  }
  .dc-pt-plan.featured .dc-pt-cta{
    background:linear-gradient(120deg, var(--brand-blue), var(--teal));
    color:#fff;
    border-color:transparent;
  }
  .dc-pt-plan.featured .dc-pt-cta:hover{
    box-shadow:0 12px 26px rgba(46,111,242,0.32);
  }
  .dc-pt-cta svg{width:14px;height:14px;transition:transform .3s var(--ease-out);}
  .dc-pt-cta:hover svg{transform:translateX(3px);}

  /* Comparison table heading */
  .dc-pt-compare-head{
    text-align:center;
    margin-bottom:20px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .55s var(--ease-out) .34s forwards;
  }
  .dc-pt-compare-title{
    font-size:22px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:6px;
    letter-spacing:-0.3px;
  }
  .dc-pt-compare-sub{
    font-size:13.5px;
    color:var(--text-body);
  }

  /* Comparison table */
  .dc-pt-table-wrap{
    background:#fff;
    border-radius:var(--radius-lg);
    border:1px solid var(--border-soft);
    box-shadow:0 8px 24px rgba(11,31,58,0.05);
    overflow:hidden;
    opacity:0;
    transform:translateY(20px);
    animation:dcFadeUp .55s var(--ease-out) .4s forwards;
  }
  .dc-pt-table-scroll{
    overflow-x:auto;
  }
  .dc-pt-table{
    width:100%;
    border-collapse:collapse;
    min-width:700px;
  }
  .dc-pt-table thead th{
    background:#FAFBFD;
    color:var(--navy);
    font-size:12px;
    font-weight:700;
    padding:16px 20px;
    text-align:center;
    border-bottom:1px solid var(--border-soft);
  }
  .dc-pt-table thead th:first-child{
    text-align:left;
    color:var(--text-light);
    text-transform:uppercase;
    letter-spacing:.5px;
    font-size:10.5px;
  }
  .dc-pt-table thead th.col-featured{
    color:var(--brand-blue);
  }
  .dc-pt-table td, .dc-pt-table th{
    text-align:center;
  }
  .dc-pt-table td:first-child, .dc-pt-table th:first-child{
    text-align:left;
  }
  .dc-pt-cat-row td{
    background:rgba(46,111,242,0.055);
    color:var(--brand-blue);
    font-weight:800;
    font-size:11.5px;
    padding:12px 20px;
    text-transform:uppercase;
    letter-spacing:.6px;
    border-bottom:1px solid var(--border-soft);
    border-top:1px solid var(--border-soft);
    border-left:3px solid var(--brand-blue);
  }
  .dc-pt-row td{
    padding:13px 20px;
    font-size:13.5px;
    font-weight:400;
    color:#1A1A1A;
    border-bottom:1px solid rgba(11,31,58,0.04);
    transition:background .2s var(--ease-out);
  }
  .dc-pt-row td:first-child{
    color:var(--navy);
    font-weight:600;
  }
  .dc-pt-row:hover td{background:rgba(46,111,242,0.06) !important;}
  .dc-pt-table td.col-featured{
    background:rgba(46,111,242,0.045);
    font-weight:700;
    color:var(--navy);
  }

  .dc-pt-icon-check, .dc-pt-icon-cross{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:17px;height:17px;
    border-radius:50%;
    vertical-align:-4px;
    margin-right:4px;
  }
  .dc-pt-icon-check{background:rgba(37,211,102,0.12);}
  .dc-pt-icon-cross{background:rgba(232,53,90,0.1);}
  .dc-pt-icon-check svg{width:9px;height:9px;}
  .dc-pt-icon-cross svg{width:8px;height:8px;}
  .dc-pt-muted{color:var(--text-light);}

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:860px){
    .dc-pt-plans{grid-template-columns:1fr; gap:16px;}
    .dc-pt-plan.featured{order:-1;}
    .dc-pt-dotgrid{display:none;}
  }
  @media (max-width:560px){
    .dc-pt-section{padding:56px 14px 60px;}
    .dc-pt-table{min-width:580px;}
    .dc-pt-table thead th, .dc-pt-row td{padding:11px 14px; font-size:12px;}
    .dc-pt-plan{padding:24px 20px 22px;}
  }

:root{
    --navy:#0B1F3A;
    --brand-blue:#2E6FF2;
    --teal:#0FBF9F;
    --text-body:#5A6478;
    --text-light:#8A93A6;
    --border-soft:rgba(11,31,58,0.07);
    --white:#ffffff;
    --radius-lg:16px;
    --radius-md:10px;
    --ease-out: cubic-bezier(.22,.61,.36,1);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{
    font-family:'Segoe UI', Inter, Arial, sans-serif;
    background:#F6F8FC;
    -webkit-font-smoothing:antialiased;
  }

  .dc-addon-section{
    padding:72px 20px 80px;
    background:#F6F8FC;
  }

  .dc-addon-inner{
    max-width:1080px;
    margin:0 auto;
  }

  .dc-addon-head{
    text-align:center;
    margin-bottom:40px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
  }
  .dc-addon-eyebrow{
    display:inline-block;
    width:fit-content;
    font-size:11.5px;
    font-weight:700;
    color:var(--brand-blue);
    background:rgba(46,111,242,0.08);
    padding:6px 14px;
    border-radius:999px;
    letter-spacing:.4px;
    margin-bottom:16px;
  }
  .dc-addon-title{
    font-size:clamp(24px, 3.2vw, 32px);
    font-weight:800;
    color:var(--navy);
    letter-spacing:-0.5px;
    margin-bottom:10px;
  }
  .dc-addon-sub{
    font-size:14.5px;
    color:var(--text-body);
  }

  .dc-addon-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
  }

  .dc-addon-card{
    background:#fff;
    border-radius:var(--radius-lg);
    padding:24px 22px 22px;
    border:1px solid var(--border-soft);
    box-shadow:0 8px 22px rgba(11,31,58,0.05);
    display:flex;
    align-items:flex-start;
    gap:16px;
    opacity:0;
    transform:translateY(22px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
    transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  }
  .dc-addon-card:nth-child(1){animation-delay:.12s;}
  .dc-addon-card:nth-child(2){animation-delay:.18s;}
  .dc-addon-card:nth-child(3){animation-delay:.24s;}
  .dc-addon-card:nth-child(4){animation-delay:.3s;}
  .dc-addon-card:nth-child(5){animation-delay:.36s;}
  .dc-addon-card:nth-child(6){animation-delay:.42s;}
  .dc-addon-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 36px rgba(11,31,58,0.1);
    border-color:rgba(46,111,242,0.16);
  }

  .dc-addon-icon{
    width:44px;height:44px;
    flex-shrink:0;
    border-radius:11px;
    background:rgba(46,111,242,0.1);
    display:flex;align-items:center;justify-content:center;
    transition:transform .4s var(--ease-out);
  }
  .dc-addon-card:hover .dc-addon-icon{transform:scale(1.12) rotate(-6deg);}
  .dc-addon-icon svg{width:21px;height:21px;}

  .dc-addon-name{
    font-size:15.5px;
    font-weight:700;
    color:var(--navy);
    margin-bottom:3px;
  }
  .dc-addon-desc{
    font-size:12.5px;
    color:var(--text-body);
    margin-bottom:14px;
    line-height:1.5;
  }
  .dc-addon-price{
    display:flex;
    align-items:baseline;
    gap:5px;
  }
  .dc-addon-price-amt{
    font-size:19px;
    font-weight:800;
    color:var(--brand-blue);
  }
  .dc-addon-price-unit{
    font-size:12px;
    color:var(--text-light);
  }

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:900px){
    .dc-addon-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width:560px){
    .dc-addon-section{padding:52px 14px 56px;}
    .dc-addon-grid{grid-template-columns:1fr; gap:14px;}
    .dc-addon-card{padding:20px 18px;}
  }

:root{
    --navy:#0B1F3A;
    --brand-blue:#2E6FF2;
    --teal:#0FBF9F;
    --text-body:#5A6478;
    --text-light:#8A93A6;
    --border-soft:rgba(11,31,58,0.07);
    --white:#ffffff;
    --radius-lg:16px;
    --ease-out: cubic-bezier(.22,.61,.36,1);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{
    font-family:'Segoe UI', Inter, Arial, sans-serif;
    background:#F6F8FC;
    -webkit-font-smoothing:antialiased;
  }

  .dc-support-section{
    padding:72px 20px 80px;
    background:#F6F8FC;
  }

  .dc-support-inner{
    max-width:1080px;
    margin:0 auto;
  }

  .dc-support-head{
    text-align:center;
    margin-bottom:40px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
  }
  .dc-support-eyebrow{
    display:inline-block;
    width:fit-content;
    font-size:11.5px;
    font-weight:700;
    color:var(--brand-blue);
    background:rgba(46,111,242,0.08);
    padding:6px 14px;
    border-radius:999px;
    letter-spacing:.4px;
    margin-bottom:16px;
  }
  .dc-support-title{
    font-size:clamp(24px, 3.2vw, 32px);
    font-weight:800;
    color:var(--navy);
    letter-spacing:-0.5px;
    margin-bottom:10px;
  }
  .dc-support-sub{
    font-size:14.5px;
    color:var(--text-body);
  }

  .dc-support-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
  }

  .dc-support-card{
    background:#fff;
    border-radius:var(--radius-lg);
    padding:24px 22px 22px;
    border:1px solid var(--border-soft);
    box-shadow:0 8px 22px rgba(11,31,58,0.05);
    opacity:0;
    transform:translateY(22px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
    transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  }
  .dc-support-card:nth-child(1){animation-delay:.12s;}
  .dc-support-card:nth-child(2){animation-delay:.18s;}
  .dc-support-card:nth-child(3){animation-delay:.24s;}
  .dc-support-card:nth-child(4){animation-delay:.3s;}
  .dc-support-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 36px rgba(11,31,58,0.1);
    border-color:rgba(46,111,242,0.16);
  }

  .dc-support-icon{
    width:44px;height:44px;
    border-radius:11px;
    background:rgba(46,111,242,0.1);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:18px;
    transition:transform .4s var(--ease-out);
  }
  .dc-support-card:hover .dc-support-icon{transform:scale(1.12) rotate(-6deg);}
  .dc-support-icon svg{width:21px;height:21px;}

  .dc-support-name{
    font-size:15px;
    font-weight:700;
    color:var(--navy);
    margin-bottom:14px;
    line-height:1.35;
    min-height:40px;
  }
  .dc-support-price{
    display:flex;
    align-items:baseline;
    gap:5px;
  }
  .dc-support-price-amt{
    font-size:19px;
    font-weight:800;
    color:var(--brand-blue);
  }
  .dc-support-price-unit{
    font-size:12px;
    color:var(--text-light);
  }

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:900px){
    .dc-support-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width:560px){
    .dc-support-section{padding:52px 14px 56px;}
    .dc-support-grid{grid-template-columns:1fr; gap:14px;}
    .dc-support-card{padding:20px 18px;}
    .dc-support-name{min-height:auto;}
  }

:root{
    --navy:#0B1F3A;
    --brand-blue:#2E6FF2;
    --teal:#0FBF9F;
    --wa-green:#25D366;
    --text-body:#5A6478;
    --text-light:#8A93A6;
    --border-soft:rgba(11,31,58,0.07);
    --white:#ffffff;
    --radius-lg:18px;
    --radius-md:12px;
    --ease-out: cubic-bezier(.22,.61,.36,1);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{
    font-family:'Segoe UI', Inter, Arial, sans-serif;
    background:#F6F8FC;
    -webkit-font-smoothing:antialiased;
  }

  .dc-demo-section{
    padding:72px 20px 80px;
    background:#F6F8FC;
  }

  .dc-demo-inner{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:56px;
    align-items:stretch;
  }

  /* LEFT */
  .dc-demo-left{
    display:flex;
    flex-direction:column;
  }
  .dc-demo-title{
    font-size:clamp(24px, 3.2vw, 34px);
    font-weight:800;
    color:var(--navy);
    line-height:1.28;
    letter-spacing:-0.5px;
    margin-bottom:14px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
  }
  .dc-demo-sub{
    font-size:14.5px;
    color:var(--text-body);
    line-height:1.6;
    max-width:440px;
    margin-bottom:32px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .55s var(--ease-out) .06s forwards;
  }

  .dc-demo-feature-list{
    display:flex;
    flex-direction:column;
    gap:22px;
  }
  .dc-demo-feature-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
  }
  .dc-demo-feature-item:nth-child(1){animation-delay:.14s;}
  .dc-demo-feature-item:nth-child(2){animation-delay:.2s;}
  .dc-demo-feature-item:nth-child(3){animation-delay:.26s;}
  .dc-demo-feature-icon{
    width:42px;height:42px;
    flex-shrink:0;
    border-radius:11px;
    display:flex;align-items:center;justify-content:center;
    transition:transform .4s var(--ease-out);
  }
  .dc-demo-feature-item:hover .dc-demo-feature-icon{transform:scale(1.1) rotate(-6deg);}
  .dc-demo-feature-icon svg{width:20px;height:20px;}
  .dc-demo-feature-icon.i-blue{background:rgba(46,111,242,0.1);}
  .dc-demo-feature-icon.i-green{background:rgba(37,211,102,0.1);}
  .dc-demo-feature-icon.i-teal{background:rgba(15,191,159,0.12);}
  .dc-demo-feature-title{
    font-size:15px;
    font-weight:700;
    color:var(--navy);
    margin-bottom:3px;
  }
  .dc-demo-feature-desc{
    font-size:12.5px;
    color:var(--text-body);
    line-height:1.5;
  }

  /* RIGHT - FORM CARD */
  .dc-demo-form-card{
    background:linear-gradient(160deg, #3E7BF0 0%, #2E6FF2 60%, #2560DE 100%);
    border-radius:var(--radius-lg);
    padding:32px 30px 30px;
    box-shadow:0 24px 50px rgba(46,111,242,0.2);
    opacity:0;
    transform:translateY(22px);
    animation:dcFadeUp .6s var(--ease-out) .18s forwards;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .dc-demo-form-title{
    color:#fff;
    font-size:21px;
    font-weight:800;
    margin-bottom:8px;
  }
  .dc-demo-form-sub{
    color:rgba(255,255,255,0.85);
    font-size:13px;
    line-height:1.5;
    margin-bottom:22px;
  }
  .dc-demo-form-group{margin-bottom:14px;}
  .dc-demo-form-group input,
  .dc-demo-form-group textarea{
    width:100%;
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.22);
    border-radius:10px;
    padding:12px 14px;
    font-size:13px;
    color:#fff;
    font-family:inherit;
    outline:none;
    transition:background .3s var(--ease-out), border-color .3s var(--ease-out);
  }
  .dc-demo-form-group input::placeholder,
  .dc-demo-form-group textarea::placeholder{
    color:rgba(255,255,255,0.68);
  }
  .dc-demo-form-group input:focus,
  .dc-demo-form-group textarea:focus{
    background:rgba(255,255,255,0.22);
    border-color:rgba(255,255,255,0.55);
  }
  .dc-demo-form-group textarea{
    resize:vertical;
    min-height:90px;
  }
  .dc-demo-form-group.msg{margin-bottom:20px;}

  .dc-demo-send-btn{
    width:100%;
    background:#fff;
    color:var(--brand-blue);
    font-weight:700;
    font-size:14.5px;
    border:none;
    border-radius:999px;
    padding:14px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    cursor:pointer;
    font-family:inherit;
    transition:transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  }
  .dc-demo-send-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(0,0,0,0.18);
  }
  .dc-demo-send-btn svg{width:16px;height:16px;transition:transform .3s var(--ease-out);}
  .dc-demo-send-btn:hover svg{transform:translateX(4px);}

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:900px){
    .dc-demo-inner{grid-template-columns:1fr; gap:34px;}
  }
  @media (max-width:560px){
    .dc-demo-section{padding:52px 16px 56px;}
    .dc-demo-form-card{padding:26px 20px 24px;}
  }

:root{
    --navy:#0B1F3A;
    --brand-blue:#2E6FF2;
    --teal:#0FBF9F;
    --wa-green:#25D366;
    --white:#ffffff;
    --ease-out: cubic-bezier(.22,.61,.36,1);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{
    font-family:'Segoe UI', Inter, Arial, sans-serif;
    background:#eef2f7;
  }

  .dc-cta-wrap{
    padding:56px 24px;
  }

  .dc-cta-banner{
    position:relative;
    max-width:1180px;
    margin:0 auto;
    border-radius:26px;
    padding:64px 40px;
    overflow:hidden;
    text-align:center;
    background:linear-gradient(120deg, #2E4CF2 0%, #2E8FF2 40%, #12B8B0 80%, #17C97C 100%);
    background-size:220% 220%;
    animation:dcGradientMove 8s ease-in-out infinite;
    box-shadow:0 30px 60px rgba(20,60,140,0.28);
  }

  @keyframes dcGradientMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
  }

  /* Floating orbs */
  .dc-orb{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,0.14);
    filter:blur(2px);
    animation:dcFloat 6s ease-in-out infinite;
  }
  .dc-orb.o1{width:120px;height:120px; top:-40px; left:6%; animation-duration:7s;}
  .dc-orb.o2{width:70px;height:70px; bottom:-20px; left:22%; animation-duration:5.5s; animation-delay:.6s;}
  .dc-orb.o3{width:160px;height:160px; top:-60px; right:8%; animation-duration:8s; animation-delay:.3s;}
  .dc-orb.o4{width:56px;height:56px; bottom:10px; right:20%; animation-duration:5s; animation-delay:1s;}

  @keyframes dcFloat{
    0%,100%{transform:translateY(0) translateX(0);}
    50%{transform:translateY(-18px) translateX(10px);}
  }

  /* Shimmer sweep */
  .dc-shimmer{
    position:absolute;
    top:0; left:-60%;
    width:50%; height:100%;
    background:linear-gradient(100deg, transparent, rgba(255,255,255,0.16), transparent);
    animation:dcShimmer 3.4s ease-in-out infinite;
    pointer-events:none;
  }
  @keyframes dcShimmer{
    0%{left:-60%;}
    60%{left:120%;}
    100%{left:120%;}
  }

  .dc-cta-content{
    position:relative;
    z-index:2;
  }

  .dc-cta-title{
    color:#fff;
    font-size:clamp(24px, 3.6vw, 38px);
    font-weight:800;
    letter-spacing:-0.4px;
    margin-bottom:14px;
    opacity:0;
    transform:translateY(20px);
    animation:dcFadeUp .7s var(--ease-out) .15s forwards;
  }

  .dc-cta-sub{
    color:rgba(255,255,255,0.9);
    font-size:15.5px;
    margin-bottom:30px;
    opacity:0;
    transform:translateY(20px);
    animation:dcFadeUp .7s var(--ease-out) .28s forwards;
  }

  .dc-cta-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    color:var(--brand-blue);
    font-weight:700;
    font-size:15px;
    padding:15px 32px;
    border-radius:999px;
    text-decoration:none;
    box-shadow:0 14px 30px rgba(0,0,0,0.22);
    opacity:0;
    transform:translateY(20px);
    animation:dcFadeUp .7s var(--ease-out) .4s forwards, dcPulse 2.6s ease-in-out 1.3s infinite;
    transition:transform .3s var(--ease-out), box-shadow .3s var(--ease-out), color .3s var(--ease-out);
  }
  .dc-cta-btn:hover{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
    color:var(--wa-green);
  }
  .dc-cta-btn svg{width:16px;height:16px;transition:transform .3s var(--ease-out);}
  .dc-cta-btn:hover svg{transform:translateX(5px);}

  @keyframes dcPulse{
    0%,100%{box-shadow:0 14px 30px rgba(0,0,0,0.22), 0 0 0 0 rgba(255,255,255,0.5);}
    50%{box-shadow:0 14px 30px rgba(0,0,0,0.22), 0 0 0 12px rgba(255,255,255,0);}
  }

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:640px){
    .dc-cta-wrap{padding:36px 16px;}
    .dc-cta-banner{padding:44px 22px; border-radius:20px;}
    .dc-cta-sub{font-size:13.5px; margin-bottom:22px;}
    .dc-cta-btn{padding:13px 26px; font-size:14px;}
    .dc-orb.o1{width:70px;height:70px;}
    .dc-orb.o3{width:90px;height:90px;}
  }