/* DigiCrux Solutions — index.php (homepage) 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-home-hero{
    position:relative;
    padding:80px 24px 70px;
    background:linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 35%, var(--brand-blue) 68%, var(--teal) 130%);
    overflow:hidden;
    text-align:center;
  }
  .dc-home-hero::before{
    content:'';
    position:absolute;
    top:-160px; left:-120px;
    width:420px; height:420px;
    background:radial-gradient(circle, rgba(15,191,159,0.28) 0%, transparent 70%);
    border-radius:50%;
    filter:blur(10px);
  }
  .dc-home-hero::after{
    content:'';
    position:absolute;
    bottom:-180px; right:-100px;
    width:460px; height:460px;
    background:radial-gradient(circle, rgba(46,111,242,0.3) 0%, transparent 70%);
    border-radius:50%;
    filter:blur(10px);
  }

  .dc-home-hero-inner{
    position:relative;
    z-index:2;
    max-width:820px;
    margin:0 auto;
  }

  .dc-home-badge-wrap{
    display:flex;
    justify-content:center;
    opacity:0;
    transform:translateY(24px);
    animation:dcFadeUp 0.7s var(--ease-out) forwards;
  }
  .dc-home-badge{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:#fff;
    padding:12px 24px;
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-lg);
    margin-bottom:26px;
    transition:transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    cursor:default;
  }
  .dc-home-badge:hover{
    transform:scale(1.06) translateY(-4px);
    box-shadow:0 20px 44px rgba(46,111,242,0.22);
  }
  .dc-home-badge-img{
    height:42px;
    width:auto;
    display:block;
    flex-shrink:0;
  }
  .dc-home-badge-divider{width:1px;height:32px;background:#e2e5ea;}
  .dc-home-badge-text{text-align:left;}
  .dc-home-badge-title{font-weight:700;font-size:14.5px;color:var(--navy);line-height:1.3;}
  .dc-home-badge-sub{font-size:12px;color:var(--text-body);}

  .dc-home-heading{
    font-size:clamp(30px, 4.4vw, 46px);
    font-weight:800; line-height:1.18; letter-spacing:-0.6px;
    color:#fff;
    margin-bottom:18px;
    opacity:0; transform:translateY(24px);
    animation:dcFadeUp 0.7s var(--ease-out) .08s forwards;
  }
  .dc-home-heading .c-green{ color:var(--wa-green); }
  .dc-home-heading .c-blue{ color:#7DD3FC; }

  .dc-home-sub{
    color:rgba(255,255,255,0.85);
    font-size:16px; line-height:1.65;
    max-width:600px; margin:0 auto 32px;
    opacity:0; transform:translateY(24px);
    animation:dcFadeUp 0.7s var(--ease-out) .16s forwards;
  }

  .dc-home-actions{
    display:flex; justify-content:center; gap:14px; flex-wrap:wrap;
    opacity:0; transform:translateY(24px);
    animation:dcFadeUp 0.7s var(--ease-out) .24s forwards;
  }

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:560px){
    .dc-home-hero{padding:56px 18px 60px;}
    .dc-home-heading{font-size:28px;}
    .dc-home-sub{font-size:14px;}
    .dc-home-badge{flex-wrap:wrap; justify-content:center; padding:12px 18px;}
    .dc-home-badge-divider{display:none;}
    .dc-home-badge-text{text-align:center;}
  }

:root{
    --navy:#0B1F3A;
    --brand-blue:#2E6FF2;
    --text-body:#5A6478;
    --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-ucf-section{
    padding:64px 20px 76px;
    background:#F6F8FC;
  }

  .dc-ucf-inner{
    max-width:1180px;
    margin:0 auto;
  }

  .dc-ucf-head{
    text-align:center;
    margin-bottom:40px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
  }
  .dc-ucf-title{
    font-size:clamp(26px, 3.4vw, 34px);
    font-weight:800;
    color:var(--brand-blue);
    letter-spacing:-0.5px;
    margin-bottom:10px;
  }
  .dc-ucf-sub{
    font-size:14.5px;
    color:var(--text-body);
  }

  .dc-ucf-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
  }

  .dc-ucf-card{
    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);
  }
  .dc-ucf-card:nth-child(1){animation-delay:.1s;}
  .dc-ucf-card:nth-child(2){animation-delay:.16s;}
  .dc-ucf-card:nth-child(3){animation-delay:.22s;}
  .dc-ucf-card:nth-child(4){animation-delay:.28s;}
  .dc-ucf-card:nth-child(5){animation-delay:.34s;}
  .dc-ucf-card:nth-child(6){animation-delay:.4s;}
  .dc-ucf-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(11,31,58,0.1);
    border-color:rgba(46,111,242,0.16);
  }

  .dc-ucf-icon{
    width:56px;height:56px;
    border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:20px;
    transition:transform .4s var(--ease-out);
  }
  .dc-ucf-card:hover .dc-ucf-icon{transform:scale(1.1) rotate(-6deg);}
  .dc-ucf-icon svg{width:26px;height:26px;}
  .dc-ucf-icon.c-blue{background:linear-gradient(135deg,#3E8BFF,#2E6FF2);}
  .dc-ucf-icon.c-pink{background:linear-gradient(135deg,#D65BF0,#A93CD1);}
  .dc-ucf-icon.c-green{background:linear-gradient(135deg,#2FE08A,#0FA870);}
  .dc-ucf-icon.c-orange{background:linear-gradient(135deg,#FFB648,#F2900B);}
  .dc-ucf-icon.c-red{background:linear-gradient(135deg,#FF5C7A,#E8355A);}
  .dc-ucf-icon.c-purple{background:linear-gradient(135deg,#9B6BFF,#6E3CDB);}

  .dc-ucf-name{
    font-size:17px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:8px;
  }
  .dc-ucf-desc{
    font-size:13px;
    color:var(--text-body);
    line-height:1.6;
  }

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:980px){
    .dc-ucf-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width:560px){
    .dc-ucf-section{padding:48px 14px 52px;}
    .dc-ucf-grid{grid-template-columns:1fr; gap:14px;}
    .dc-ucf-card{padding:22px 20px;}
  }

:root{
    --navy:#0B1F3A;
    --brand-blue:#2E6FF2;
    --text-body:#5A6478;
    --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-bs-section{
    padding:64px 20px 76px;
    background:#F6F8FC;
  }

  .dc-bs-inner{
    max-width:1180px;
    margin:0 auto;
  }

  .dc-bs-head{
    text-align:center;
    margin-bottom:40px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
  }
  .dc-bs-title{
    font-size:clamp(26px, 3.4vw, 34px);
    font-weight:800;
    color:var(--brand-blue);
    letter-spacing:-0.5px;
    margin-bottom:10px;
  }
  .dc-bs-sub{
    font-size:14.5px;
    color:var(--text-body);
  }

  .dc-bs-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:16px;
  }

  .dc-bs-card{
    background:#fff;
    border-radius:var(--radius-lg);
    padding:22px 20px 20px;
    border:1px solid var(--border-soft);
    box-shadow:0 8px 20px rgba(11,31,58,0.05);
    opacity:0;
    transform:translateY(20px);
    animation:dcFadeUp .5s var(--ease-out) forwards;
    transition:transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
  }
  .dc-bs-card:nth-child(1){animation-delay:.05s;}
  .dc-bs-card:nth-child(2){animation-delay:.08s;}
  .dc-bs-card:nth-child(3){animation-delay:.11s;}
  .dc-bs-card:nth-child(4){animation-delay:.14s;}
  .dc-bs-card:nth-child(5){animation-delay:.17s;}
  .dc-bs-card:nth-child(6){animation-delay:.2s;}
  .dc-bs-card:nth-child(7){animation-delay:.23s;}
  .dc-bs-card:nth-child(8){animation-delay:.26s;}
  .dc-bs-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 34px rgba(11,31,58,0.1);
    border-color:rgba(46,111,242,0.16);
  }

  .dc-bs-icon{
    width:44px;height:44px;
    border-radius:11px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:16px;
    transition:transform .4s var(--ease-out);
  }
  .dc-bs-card:hover .dc-bs-icon{transform:scale(1.1) rotate(-6deg);}
  .dc-bs-icon svg{width:21px;height:21px;}
  .dc-bs-icon.c-blue{background:linear-gradient(135deg,#3E8BFF,#2E6FF2);}
  .dc-bs-icon.c-pink{background:linear-gradient(135deg,#D65BF0,#A93CD1);}
  .dc-bs-icon.c-green{background:linear-gradient(135deg,#2FE08A,#0FA870);}
  .dc-bs-icon.c-orange{background:linear-gradient(135deg,#FFB648,#F2900B);}
  .dc-bs-icon.c-red{background:linear-gradient(135deg,#FF5C7A,#E8355A);}
  .dc-bs-icon.c-purple{background:linear-gradient(135deg,#9B6BFF,#6E3CDB);}
  .dc-bs-icon.c-indigo{background:linear-gradient(135deg,#5C7CF0,#3D57D6);}
  .dc-bs-icon.c-teal{background:linear-gradient(135deg,#2FE0B0,#0FA88A);}

  .dc-bs-name{
    font-size:15px;
    font-weight:700;
    color:var(--navy);
    margin-bottom:6px;
  }
  .dc-bs-desc{
    font-size:12.5px;
    color:var(--text-body);
    line-height:1.55;
  }

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:980px){
    .dc-bs-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width:560px){
    .dc-bs-section{padding:48px 14px 52px;}
    .dc-bs-grid{grid-template-columns:1fr; gap:12px;}
    .dc-bs-card{padding:18px;}
  }

:root{
    --navy:#0B1F3A;
    --brand-blue:#2E6FF2;
    --teal:#0FBF9F;
    --text-body:#5A6478;
    --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-tg-section{
    padding:64px 20px 76px;
    background:#F6F8FC;
  }

  .dc-tg-inner{
    max-width:1180px;
    margin:0 auto;
  }

  .dc-tg-head{
    text-align:center;
    margin-bottom:36px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
  }
  .dc-tg-title{
    font-size:clamp(26px, 3.4vw, 34px);
    font-weight:800;
    color:var(--brand-blue);
    letter-spacing:-0.5px;
    margin-bottom:10px;
  }
  .dc-tg-sub{
    font-size:14.5px;
    color:var(--text-body);
  }

  .dc-tg-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
    margin-bottom:18px;
  }

  .dc-tg-card{
    background:#fff;
    border-radius:var(--radius-lg);
    padding:26px 20px 22px;
    text-align:center;
    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-tg-card:nth-child(1){animation-delay:.1s;}
  .dc-tg-card:nth-child(2){animation-delay:.16s;}
  .dc-tg-card:nth-child(3){animation-delay:.22s;}
  .dc-tg-card:nth-child(4){animation-delay:.28s;}
  .dc-tg-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 34px rgba(11,31,58,0.1);
    border-color:rgba(46,111,242,0.16);
  }

  .dc-tg-icon{
    width:52px;height:52px;
    border-radius:13px;
    margin:0 auto 18px;
    display:flex;align-items:center;justify-content:center;
    transition:transform .4s var(--ease-out);
  }
  .dc-tg-card:hover .dc-tg-icon{transform:scale(1.1) rotate(-6deg);}
  .dc-tg-icon svg{width:24px;height:24px;}
  .dc-tg-icon.c-blue{background:linear-gradient(135deg,#3E8BFF,#2E6FF2);}
  .dc-tg-icon.c-pink{background:linear-gradient(135deg,#D65BF0,#A93CD1);}
  .dc-tg-icon.c-green{background:linear-gradient(135deg,#2FE08A,#0FA870);}
  .dc-tg-icon.c-orange{background:linear-gradient(135deg,#FFB648,#F2900B);}

  .dc-tg-num{
    font-size:28px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:4px;
  }
  .dc-tg-label{
    font-size:13px;
    color:var(--text-body);
  }

  /* Bottom banner cards */
  .dc-tg-banner-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
  }
  .dc-tg-banner-card{
    display:flex;
    align-items:center;
    gap:18px;
    background:linear-gradient(120deg, var(--brand-blue), var(--teal));
    border-radius:var(--radius-lg);
    padding:26px 26px;
    opacity:0;
    transform:translateY(22px);
    animation:dcFadeUp .55s var(--ease-out) forwards;
    transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
    box-shadow:0 14px 30px rgba(46,111,242,0.18);
  }
  .dc-tg-banner-card:nth-child(1){animation-delay:.36s;}
  .dc-tg-banner-card:nth-child(2){animation-delay:.42s;}
  .dc-tg-banner-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(46,111,242,0.28);
  }
  .dc-tg-banner-icon{
    width:52px;height:52px;
    flex-shrink:0;
    border-radius:13px;
    background:rgba(255,255,255,0.22);
    display:flex;align-items:center;justify-content:center;
    transition:transform .4s var(--ease-out);
  }
  .dc-tg-banner-card:hover .dc-tg-banner-icon{transform:scale(1.1) rotate(-6deg);}
  .dc-tg-banner-icon svg{width:24px;height:24px;}
  .dc-tg-banner-num{
    color:#fff;
    font-size:26px;
    font-weight:800;
    margin-bottom:2px;
  }
  .dc-tg-banner-label{
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:2px;
  }
  .dc-tg-banner-desc{
    color:rgba(255,255,255,0.85);
    font-size:12.5px;
  }

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:980px){
    .dc-tg-grid{grid-template-columns:repeat(2, 1fr);}
    .dc-tg-banner-grid{grid-template-columns:1fr;}
  }
  @media (max-width:560px){
    .dc-tg-section{padding:48px 14px 52px;}
    .dc-tg-grid{grid-template-columns:1fr; gap:12px;}
    .dc-tg-card{padding:20px 16px;}
    .dc-tg-banner-card{padding:20px;}
  }

:root{
    --navy:#0B1F3A;
    --brand-blue:#2E6FF2;
    --teal:#0FBF9F;
    --wa-green:#25D366;
    --text-body:#5A6478;
    --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:#eef2f7;
  }

  .dc-split-section{
    padding:64px 24px;
    background:linear-gradient(160deg, #F5F8FD 0%, #FFFFFF 55%);
  }

  .dc-split-inner{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:56px;
    align-items:stretch;
  }

  .dc-left{
    display:flex;
    flex-direction:column;
  }
  .dc-stat-row{
    margin-top:auto;
  }

  /* LEFT SIDE */
  .dc-left-eyebrow{
    display:inline-block;
    width:fit-content;
    font-size:12px;
    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:14px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .6s var(--ease-out) forwards;
  }
  .dc-left-title{
    font-size:clamp(24px, 3.2vw, 34px);
    font-weight:800;
    color:var(--navy);
    line-height:1.25;
    margin-bottom:14px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .6s var(--ease-out) .06s forwards;
  }
  .dc-left-title span{
    background:linear-gradient(90deg, var(--brand-blue), var(--teal));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .dc-left-sub{
    font-size:14.5px;
    color:var(--text-body);
    line-height:1.6;
    max-width:440px;
    margin-bottom:28px;
    opacity:0;
    transform:translateY(16px);
    animation:dcFadeUp .6s var(--ease-out) .12s forwards;
  }

  .dc-feature-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:22px;
  }
  .dc-feature-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    background:var(--white);
    border:1px solid rgba(11,31,58,0.06);
    border-radius:var(--radius-md);
    padding:16px 18px;
    box-shadow:0 8px 20px rgba(11,31,58,0.05);
    opacity:0;
    transform:translateY(18px);
    animation:dcFadeUp .6s var(--ease-out) forwards;
    transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  }
  .dc-feature-item:nth-child(1){animation-delay:.18s;}
  .dc-feature-item:nth-child(2){animation-delay:.24s;}
  .dc-feature-item:nth-child(3){animation-delay:.3s;}
  .dc-feature-item:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(11,31,58,0.1);
    border-color:rgba(46,111,242,0.18);
  }
  .dc-feature-icon{
    width:38px;height:38px;
    flex-shrink:0;
    border-radius:10px;
    background:rgba(46,111,242,0.1);
    display:flex;align-items:center;justify-content:center;
    transition:transform .4s var(--ease-out);
  }
  .dc-feature-item:hover .dc-feature-icon{transform:scale(1.1) rotate(-6deg);}
  .dc-feature-icon svg{width:19px;height:19px;}
  .dc-feature-title{
    font-size:14.5px;
    font-weight:700;
    color:var(--navy);
    margin-bottom:3px;
  }
  .dc-feature-desc{
    font-size:12.5px;
    color:var(--text-body);
  }

  .dc-stat-row{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:10px;
  }
  .dc-mini-stat{
    background:var(--white);
    border:1px solid rgba(11,31,58,0.06);
    border-radius:var(--radius-md);
    padding:12px 12px;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:0 6px 16px rgba(11,31,58,0.04);
    opacity:0;
    transform:translateY(18px);
    animation:dcFadeUp .6s var(--ease-out) forwards;
    transition:transform .3s var(--ease-out);
  }
  .dc-mini-stat:nth-child(1){animation-delay:.36s;}
  .dc-mini-stat:nth-child(2){animation-delay:.4s;}
  .dc-mini-stat:nth-child(3){animation-delay:.44s;}
  .dc-mini-stat:hover{transform:translateY(-3px);}
  .dc-mini-stat svg{width:16px;height:16px;flex-shrink:0;}
  .dc-mini-stat-text{font-size:12px;font-weight:700;color:var(--navy);line-height:1.3;}

  /* RIGHT SIDE - FORM CARD */
  .dc-form-card{
    background:linear-gradient(160deg, #3E7BF0 0%, #2E6FF2 60%, #2560DE 100%);
    border-radius:22px;
    padding:32px 30px 30px;
    box-shadow:0 24px 50px rgba(46,111,242,0.22);
    opacity:0;
    transform:translateY(24px);
    animation:dcFadeUp .7s var(--ease-out) .2s forwards;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .dc-form-title{
    color:#fff;
    font-size:20px;
    font-weight:800;
    margin-bottom:20px;
  }
  .dc-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:14px;
  }
  .dc-form-group label{
    display:block;
    font-size:12px;
    font-weight:700;
    color:rgba(255,255,255,0.9);
    margin-bottom:6px;
  }
  .dc-form-group input,
  .dc-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:11px 13px;
    font-size:13px;
    color:#fff;
    font-family:inherit;
    outline:none;
    transition:background .3s var(--ease-out), border-color .3s var(--ease-out);
  }
  .dc-form-group input::placeholder,
  .dc-form-group textarea::placeholder{
    color:rgba(255,255,255,0.65);
  }
  .dc-form-group input:focus,
  .dc-form-group textarea:focus{
    background:rgba(255,255,255,0.22);
    border-color:rgba(255,255,255,0.55);
  }
  .dc-form-group textarea{
    resize:vertical;
    min-height:88px;
  }
  .dc-form-group.full{margin-bottom:20px;}

  .dc-send-btn{
    width:100%;
    background:#fff;
    color:var(--navy);
    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;
    transition:transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out);
  }
  .dc-send-btn:hover{
    background:var(--wa-green);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(37,211,102,0.35);
  }
  .dc-send-btn svg{width:16px;height:16px;transition:transform .3s var(--ease-out);}
  .dc-send-btn:hover svg{transform:translateX(4px);}

  @keyframes dcFadeUp{
    to{opacity:1; transform:translateY(0);}
  }

  @media (max-width:900px){
    .dc-split-inner{grid-template-columns:1fr; gap:34px;}
  }
  @media (max-width:560px){
    .dc-split-section{padding:44px 16px;}
    .dc-form-row{grid-template-columns:1fr;}
    .dc-stat-row{grid-template-columns:1fr;}
    .dc-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;}
  }