/* ==========================================================================
   Tatweri Growth Pro — Front-end styles
   Design system: dark premium violet + light lavender, gradient spectrum rail
   ========================================================================== */

:root{
  /* Brand palette */
  --tw-ink:#140a28;          /* deep indigo-black */
  --tw-ink-2:#1d1140;        /* raised dark surface */
  --tw-ink-3:#281a55;        /* dark border / hover */
  --tw-brand:#6d28d9;        /* primary violet */
  --tw-brand-bright:#7c3aed;
  --tw-magenta:#c026d3;      /* gradient partner */
  --tw-pink:#ec4899;
  --tw-cyan:#22d3ee;
  --tw-green:#14b86a;
  --tw-amber:#f5a524;

  /* Neutrals */
  --tw-paper:#ffffff;
  --tw-mist:#f5f2fc;         /* soft light section */
  --tw-mist-2:#ece6f9;
  --tw-line:#e7e1f4;         /* light borders */
  --tw-text:#1c1530;         /* body text on light */
  --tw-muted:#5f5878;        /* secondary text */
  --tw-text-dark:#f4f1fb;    /* text on dark */
  --tw-muted-dark:#b6abd6;   /* secondary on dark */

  /* Signature gradients */
  --tw-grad:linear-gradient(120deg,var(--tw-brand-bright),var(--tw-magenta));
  --tw-grad-soft:linear-gradient(120deg,#7c3aed22,#c026d322);
  --tw-spectrum:linear-gradient(90deg,var(--tw-brand) 0%,var(--tw-pink) 30%,var(--tw-cyan) 62%,var(--tw-green) 85%,var(--tw-amber) 100%);

  /* Type */
  --tw-font-display:"Sora",system-ui,-apple-system,"Segoe UI",sans-serif;
  --tw-font-body:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;

  /* Scale & shape */
  --tw-radius:18px;
  --tw-radius-sm:12px;
  --tw-radius-lg:26px;
  --tw-shadow:0 18px 50px -22px rgba(76,29,149,.30);
  --tw-shadow-sm:0 8px 24px -14px rgba(20,10,40,.28);
  --tw-shadow-dark:0 30px 70px -30px rgba(0,0,0,.6);
  --tw-container:1200px;
  --tw-gutter:clamp(20px,5vw,40px);
  --tw-section-y:clamp(64px,9vw,124px);
}

/* --------------------------------------------------------- Base reset ---- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--tw-font-body);
  font-size:17px;
  line-height:1.65;
  color:var(--tw-text);
  background:var(--tw-paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--tw-brand);text-decoration:none;transition:color .2s ease}
a:hover{color:var(--tw-magenta)}
button{font-family:inherit}
h1,h2,h3,h4,h5{font-family:var(--tw-font-display);color:var(--tw-ink);line-height:1.1;letter-spacing:-.02em;margin:0 0 .5em;font-weight:700}
h1{font-size:clamp(2.4rem,5.4vw,4rem);font-weight:800}
h2{font-size:clamp(1.9rem,3.8vw,2.85rem)}
h3{font-size:clamp(1.25rem,2.1vw,1.55rem)}
p{margin:0 0 1.1em}
ul,ol{margin:0 0 1.1em;padding-left:1.2em}
:focus-visible{outline:3px solid var(--tw-cyan);outline-offset:3px;border-radius:6px}
::selection{background:var(--tw-brand);color:#fff}

/* --------------------------------------------------------- Layout -------- */
.tw-container{width:100%;max-width:var(--tw-container);margin-inline:auto;padding-inline:var(--tw-gutter)}
.tw-container--wide{max-width:1340px}
.tw-section{padding-block:var(--tw-section-y);position:relative}
.tw-section--tight{padding-block:clamp(44px,6vw,72px)}

/* Dark / light section themes */
.tw-dark{
  background:
    radial-gradient(900px 520px at 12% -10%,rgba(124,58,237,.42),transparent 60%),
    radial-gradient(760px 520px at 96% 8%,rgba(192,38,211,.30),transparent 58%),
    linear-gradient(180deg,var(--tw-ink),#100722);
  color:var(--tw-text-dark);
}
.tw-dark h1,.tw-dark h2,.tw-dark h3,.tw-dark h4{color:#fff}
.tw-dark p{color:var(--tw-muted-dark)}
.tw-light{background:var(--tw-paper)}
.tw-mist{background:linear-gradient(180deg,var(--tw-mist),#fff)}

/* --------------------------------------------------------- Signature ----- */
/* Eyebrow + gradient spectrum rail (echoes the company-profile bracket connectors) */
.tw-eyebrow{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:var(--tw-font-body);font-weight:700;font-size:.78rem;
  letter-spacing:.16em;text-transform:uppercase;color:var(--tw-brand);
  margin:0 0 1rem;
}
.tw-dark .tw-eyebrow{color:var(--tw-cyan)}
.tw-eyebrow::before{
  content:"";width:34px;height:3px;border-radius:3px;background:var(--tw-spectrum);
}
.tw-rail{height:4px;border-radius:4px;background:var(--tw-spectrum);width:84px;margin:0 0 1.4rem}
.tw-rail--center{margin-inline:auto}
.tw-section-head{max-width:720px;margin:0 0 clamp(34px,4vw,56px)}
.tw-section-head--center{margin-inline:auto;text-align:center}
.tw-section-head p{font-size:1.08rem;color:var(--tw-muted)}
.tw-dark .tw-section-head p{color:var(--tw-muted-dark)}

/* --------------------------------------------------------- Buttons ------- */
.tw-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--tw-font-display);font-weight:600;font-size:1rem;
  padding:.95rem 1.7rem;border-radius:999px;border:1.5px solid transparent;
  cursor:pointer;transition:transform .18s ease,box-shadow .25s ease,background .25s ease,color .2s ease;
  line-height:1;text-align:center;
}
.tw-btn svg{width:1.05em;height:1.05em;flex:none}
.tw-btn--primary{background:var(--tw-grad);color:#fff;box-shadow:0 14px 30px -12px rgba(124,58,237,.65)}
.tw-btn--primary:hover{color:#fff;transform:translateY(-2px);box-shadow:0 20px 40px -14px rgba(192,38,211,.7)}
.tw-btn--ghost{background:transparent;color:var(--tw-ink);border-color:var(--tw-line)}
.tw-btn--ghost:hover{border-color:var(--tw-brand);color:var(--tw-brand);transform:translateY(-2px)}
.tw-dark .tw-btn--ghost{color:#fff;border-color:rgba(255,255,255,.28)}
.tw-dark .tw-btn--ghost:hover{border-color:#fff;color:#fff;background:rgba(255,255,255,.06)}
.tw-btn--light{background:#fff;color:var(--tw-ink)}
.tw-btn--light:hover{transform:translateY(-2px);color:var(--tw-brand)}
.tw-btn--wa{background:#25d366;color:#fff;box-shadow:0 12px 26px -12px rgba(37,211,102,.6)}
.tw-btn--wa:hover{color:#fff;transform:translateY(-2px);box-shadow:0 18px 34px -14px rgba(37,211,102,.7)}
.tw-btn--block{display:flex;width:100%}
.tw-btn--lg{padding:1.1rem 2.1rem;font-size:1.08rem}
.tw-btn-row{display:flex;flex-wrap:wrap;gap:.9rem;align-items:center}

/* --------------------------------------------------------- Header -------- */
.tw-header{position:sticky;top:0;z-index:120;transition:background .3s ease,box-shadow .3s ease,backdrop-filter .3s ease}
.tw-header__inner{display:flex;align-items:center;justify-content:space-between;gap:1.4rem;height:84px}
.tw-header.is-solid{background:rgba(255,255,255,.86);backdrop-filter:saturate(180%) blur(14px);box-shadow:0 1px 0 var(--tw-line)}
.tw-header--ondark{background:transparent}
.tw-header--ondark.is-solid{background:rgba(16,7,34,.82)}
.tw-brand-link{display:inline-flex;align-items:center;gap:.7rem;font-family:var(--tw-font-display);font-weight:800;font-size:1.45rem;color:var(--tw-ink);letter-spacing:-.03em}
.tw-header--ondark .tw-brand-link,.tw-header--ondark.is-solid .tw-brand-link{color:#fff}
.tw-brand-link:hover{color:var(--tw-ink)}
.tw-logo-mark{width:38px;height:38px;flex:none}
.tw-nav{display:flex;align-items:center;gap:.3rem}
.tw-nav a{
  font-family:var(--tw-font-display);font-weight:500;font-size:.98rem;color:var(--tw-text);
  padding:.55rem .85rem;border-radius:10px;position:relative;
}
.tw-header--ondark .tw-nav a{color:var(--tw-text-dark)}
.tw-nav a:hover,.tw-nav .current-menu-item>a{color:var(--tw-brand)}
.tw-header--ondark .tw-nav a:hover,.tw-header--ondark .tw-nav .current-menu-item>a{color:var(--tw-cyan)}
.tw-nav .sub-menu{
  position:absolute;top:calc(100% + 10px);left:0;min-width:240px;background:#fff;
  border:1px solid var(--tw-line);border-radius:14px;box-shadow:var(--tw-shadow);
  padding:.5rem;list-style:none;margin:0;opacity:0;visibility:hidden;transform:translateY(8px);
  transition:.2s ease;z-index:5;
}
.tw-nav li{position:relative}
.tw-nav .menu-item-has-children:hover>.sub-menu{opacity:1;visibility:visible;transform:translateY(0)}
.tw-nav .sub-menu a{display:block;color:var(--tw-text);padding:.6rem .8rem;border-radius:9px;font-weight:500}
.tw-nav .sub-menu a:hover{background:var(--tw-mist);color:var(--tw-brand)}
.tw-header__cta{display:flex;align-items:center;gap:.8rem}
.tw-header__cta .tw-btn{padding:.7rem 1.3rem;font-size:.95rem}
.tw-nav-toggle{display:none;width:46px;height:46px;border:1px solid var(--tw-line);border-radius:12px;background:#fff;cursor:pointer;align-items:center;justify-content:center;flex-direction:column;gap:5px}
.tw-nav-toggle span{width:20px;height:2px;background:var(--tw-ink);border-radius:2px;transition:.25s ease}
.tw-header--ondark .tw-nav-toggle{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.2)}
.tw-header--ondark .tw-nav-toggle span{background:#fff}
.tw-nav-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.tw-nav-toggle.is-open span:nth-child(2){opacity:0}
.tw-nav-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* --------------------------------------------------------- Hero ---------- */
.tw-hero{position:relative;overflow:hidden;padding-block:clamp(56px,8vw,104px) clamp(72px,9vw,120px)}
.tw-hero__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(32px,5vw,64px);align-items:center}
.tw-hero__badge{
  display:inline-flex;align-items:center;gap:.55rem;background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);color:#fff;border-radius:999px;
  padding:.5rem 1rem;font-size:.85rem;font-weight:500;margin-bottom:1.6rem;
}
.tw-hero__badge .dot{width:8px;height:8px;border-radius:50%;background:var(--tw-cyan);box-shadow:0 0 0 4px rgba(34,211,238,.22)}
.tw-hero h1{margin-bottom:.65rem;max-width:14ch}
.tw-hero h1 .hl{background:var(--tw-grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.tw-hero__rail{height:5px;width:120px;border-radius:5px;background:var(--tw-spectrum);margin:1.2rem 0 1.5rem}
.tw-hero__sub{font-size:1.18rem;color:var(--tw-muted-dark);max-width:46ch;margin-bottom:2rem}
.tw-hero__trust{display:flex;flex-wrap:wrap;gap:1.2rem 1.8rem;margin-top:2.4rem;padding-top:1.8rem;border-top:1px solid rgba(255,255,255,.1)}
.tw-hero__trust-item{display:flex;align-items:center;gap:.6rem;font-size:.92rem;color:var(--tw-muted-dark)}
.tw-hero__trust-item svg{width:20px;height:20px;color:var(--tw-cyan);flex:none}

/* Hero visual: orbit rings + dashboard snapshot card */
.tw-hero__visual{position:relative;min-height:420px;display:flex;align-items:center;justify-content:center}
.tw-orbit{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;pointer-events:none}
.tw-orbit span{position:absolute;border:1px dashed rgba(180,150,255,.34);border-radius:50%}
.tw-orbit span:nth-child(1){width:120%;height:120%;animation:tw-spin 60s linear infinite}
.tw-orbit span:nth-child(2){width:88%;height:88%;animation:tw-spin 42s linear infinite reverse}
.tw-orbit span:nth-child(3){width:56%;height:56%;border-style:solid;border-color:rgba(124,58,237,.28)}
.tw-orbit .blob{
  position:absolute;width:54%;height:54%;border-radius:50%;
  background:radial-gradient(circle at 32% 30%,#9d4dff,#6d28d9 45%,#4c1d95 80%);
  filter:blur(2px);opacity:.92;box-shadow:0 30px 90px -20px rgba(124,58,237,.7);
}
.tw-orbit .dot{position:absolute;width:14px;height:14px;border-radius:50%;background:var(--tw-cyan);box-shadow:0 0 0 5px rgba(34,211,238,.25)}
.tw-orbit .dot.m{background:var(--tw-magenta);box-shadow:0 0 0 5px rgba(192,38,211,.25)}
.tw-card-snapshot{
  position:relative;z-index:2;width:min(380px,100%);
  background:rgba(255,255,255,.96);border-radius:20px;padding:1.4rem 1.5rem;
  box-shadow:var(--tw-shadow-dark);border:1px solid rgba(255,255,255,.6);
}
.tw-card-snapshot__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.1rem}
.tw-card-snapshot__title{font-family:var(--tw-font-display);font-weight:700;font-size:1rem;color:var(--tw-ink)}
.tw-pill-live{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:700;color:var(--tw-green);background:#e9f9f0;padding:.3rem .6rem;border-radius:999px}
.tw-pill-live .dot{width:7px;height:7px;border-radius:50%;background:var(--tw-green);animation:tw-pulse 1.8s ease infinite}
.tw-kpi-row{display:flex;align-items:center;justify-content:space-between;padding:.7rem 0;border-bottom:1px dashed var(--tw-line)}
.tw-kpi-row:last-child{border-bottom:0}
.tw-kpi-row .label{font-size:.9rem;color:var(--tw-muted)}
.tw-kpi-row .val{font-family:var(--tw-font-display);font-weight:700;color:var(--tw-ink);display:flex;align-items:center;gap:.4rem}
.tw-kpi-row .val .up{color:var(--tw-green);font-size:.8rem;font-weight:600}
.tw-kpi-bar{height:8px;border-radius:8px;background:var(--tw-mist-2);margin-top:1rem;overflow:hidden}
.tw-kpi-bar i{display:block;height:100%;border-radius:8px;background:var(--tw-spectrum);width:72%}

/* --------------------------------------------------------- Trust bar ----- */
.tw-trustbar{border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.tw-trustbar__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}
.tw-trustbar__item{padding:.4rem}
.tw-trustbar__item .ico{width:42px;height:42px;margin:0 auto .7rem;border-radius:12px;display:grid;place-items:center;background:rgba(124,58,237,.16);color:var(--tw-cyan)}
.tw-trustbar__item .ico svg{width:22px;height:22px}
.tw-trustbar__item strong{display:block;font-family:var(--tw-font-display);color:#fff;font-size:1rem;margin-bottom:.15rem}
.tw-trustbar__item span{font-size:.86rem;color:var(--tw-muted-dark)}

/* --------------------------------------------------------- Cards / grid -- */
.tw-grid{display:grid;gap:clamp(18px,2.2vw,26px)}
.tw-grid--2{grid-template-columns:repeat(2,1fr)}
.tw-grid--3{grid-template-columns:repeat(3,1fr)}
.tw-grid--4{grid-template-columns:repeat(4,1fr)}

.tw-card{
  background:#fff;border:1px solid var(--tw-line);border-radius:var(--tw-radius);
  padding:1.6rem;box-shadow:var(--tw-shadow-sm);transition:transform .22s ease,box-shadow .25s ease,border-color .25s ease;
  position:relative;overflow:hidden;
}
.tw-card::before{content:"";position:absolute;inset:0 0 auto 0;height:4px;background:var(--tw-spectrum);transform:scaleX(0);transform-origin:left;transition:transform .3s ease}
.tw-card:hover{transform:translateY(-6px);box-shadow:var(--tw-shadow);border-color:transparent}
.tw-card:hover::before{transform:scaleX(1)}
.tw-card__ico{width:54px;height:54px;border-radius:14px;display:grid;place-items:center;background:var(--tw-grad-soft);color:var(--tw-brand);margin-bottom:1.1rem}
.tw-card__ico svg{width:27px;height:27px}
.tw-card h3{margin-bottom:.5rem}
.tw-card p{color:var(--tw-muted);margin-bottom:1rem;font-size:.98rem}
.tw-card__link{font-family:var(--tw-font-display);font-weight:600;font-size:.95rem;display:inline-flex;align-items:center;gap:.4rem}
.tw-card__link svg{width:1em;height:1em;transition:transform .2s ease}
.tw-card__link:hover svg{transform:translateX(4px)}

/* Dark variant cards */
.tw-dark .tw-card{background:rgba(255,255,255,.045);border-color:rgba(255,255,255,.1);box-shadow:none;backdrop-filter:blur(6px)}
.tw-dark .tw-card:hover{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.18)}
.tw-dark .tw-card p{color:var(--tw-muted-dark)}
.tw-dark .tw-card__ico{background:rgba(124,58,237,.2);color:var(--tw-cyan)}

/* --------------------------------------------------------- Process ------- */
.tw-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;counter-reset:step}
.tw-step{position:relative;padding-top:.5rem}
.tw-step__num{
  width:64px;height:64px;border-radius:50%;display:grid;place-items:center;
  font-family:var(--tw-font-display);font-weight:800;font-size:1.4rem;color:#fff;
  background:var(--tw-grad);box-shadow:0 14px 30px -12px rgba(124,58,237,.6);margin-bottom:1.2rem;position:relative;z-index:2;
}
.tw-step:nth-child(2) .tw-step__num{background:linear-gradient(120deg,var(--tw-pink),var(--tw-magenta))}
.tw-step:nth-child(3) .tw-step__num{background:linear-gradient(120deg,var(--tw-cyan),#0ea5e9)}
.tw-step:nth-child(4) .tw-step__num{background:linear-gradient(120deg,var(--tw-green),#0d9488)}
.tw-step::after{content:"";position:absolute;top:32px;left:64px;right:-1.4rem;height:2px;background:linear-gradient(90deg,var(--tw-line),transparent);z-index:1}
.tw-step:last-child::after{display:none}
.tw-step h3{font-size:1.2rem;margin-bottom:.4rem}
.tw-step p{color:var(--tw-muted);font-size:.95rem}
.tw-dark .tw-step p,.tw-dark .tw-step::after{color:var(--tw-muted-dark)}
.tw-dark .tw-step::after{background:linear-gradient(90deg,rgba(255,255,255,.18),transparent)}

/* --------------------------------------------------------- Results ------- */
.tw-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;text-align:center}
.tw-stat{padding:1.8rem 1rem;border-radius:var(--tw-radius);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1)}
.tw-stat__num{font-family:var(--tw-font-display);font-weight:800;font-size:clamp(2.2rem,4vw,3rem);background:var(--tw-grad);-webkit-background-clip:text;background-clip:text;color:transparent;line-height:1}
.tw-stat__num .suffix{-webkit-text-fill-color:var(--tw-cyan);color:var(--tw-cyan)}
.tw-stat__label{margin-top:.6rem;color:var(--tw-muted-dark);font-size:.95rem}

/* --------------------------------------------------------- Case studies -- */
.tw-case{
  display:grid;grid-template-columns:1.1fr 1fr;gap:0;border-radius:var(--tw-radius-lg);overflow:hidden;
  border:1px solid var(--tw-line);background:#fff;box-shadow:var(--tw-shadow-sm);margin-bottom:1.6rem;
}
.tw-case:nth-child(even){grid-template-columns:1fr 1.1fr}
.tw-case:nth-child(even) .tw-case__media{order:2}
.tw-case__media{min-height:300px;background:var(--tw-grad);position:relative;display:grid;place-items:center;color:#fff;padding:2rem}
.tw-case:nth-child(2) .tw-case__media{background:linear-gradient(130deg,#0ea5e9,var(--tw-cyan))}
.tw-case:nth-child(3) .tw-case__media{background:linear-gradient(130deg,var(--tw-pink),var(--tw-magenta))}
.tw-case:nth-child(4) .tw-case__media{background:linear-gradient(130deg,var(--tw-green),#0d9488)}
.tw-case__media .tag{position:absolute;top:1.3rem;left:1.3rem;background:rgba(255,255,255,.2);padding:.4rem .9rem;border-radius:999px;font-size:.8rem;font-weight:600}
.tw-case__media .big{font-family:var(--tw-font-display);font-weight:800;font-size:2.4rem;text-align:center;text-shadow:0 6px 24px rgba(0,0,0,.25)}
.tw-case__body{padding:clamp(1.6rem,3vw,2.4rem)}
.tw-case__body h3{margin-bottom:.8rem}
.tw-case__meta{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.1rem}
.tw-tagpill{font-size:.78rem;font-weight:600;color:var(--tw-brand);background:var(--tw-mist);border:1px solid var(--tw-line);padding:.32rem .7rem;border-radius:999px}
.tw-case__row{margin-bottom:.8rem}
.tw-case__row strong{display:block;font-family:var(--tw-font-display);font-size:.82rem;text-transform:uppercase;letter-spacing:.08em;color:var(--tw-brand);margin-bottom:.2rem}
.tw-case__row span{color:var(--tw-muted);font-size:.96rem}

/* --------------------------------------------------------- Packages ------ */
.tw-pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;align-items:stretch}
.tw-plan{
  display:flex;flex-direction:column;background:#fff;border:1px solid var(--tw-line);
  border-radius:var(--tw-radius-lg);padding:2rem 1.7rem;box-shadow:var(--tw-shadow-sm);position:relative;transition:transform .22s ease,box-shadow .25s ease;
}
.tw-plan:hover{transform:translateY(-6px);box-shadow:var(--tw-shadow)}
.tw-plan--featured{border:0;background:linear-gradient(180deg,var(--tw-ink-2),var(--tw-ink));color:var(--tw-text-dark);box-shadow:var(--tw-shadow);transform:scale(1.03)}
.tw-plan--featured:hover{transform:scale(1.03) translateY(-6px)}
.tw-plan--featured h3,.tw-plan--featured .tw-plan__price{color:#fff}
.tw-plan__flag{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--tw-grad);color:#fff;font-family:var(--tw-font-display);font-weight:700;font-size:.78rem;letter-spacing:.05em;padding:.4rem 1rem;border-radius:999px;box-shadow:0 10px 24px -10px rgba(192,38,211,.7)}
.tw-plan__name{font-family:var(--tw-font-display);font-weight:700;font-size:1.3rem;margin-bottom:.4rem;color:var(--tw-ink)}
.tw-plan--featured .tw-plan__name{color:#fff}
.tw-plan__price{font-family:var(--tw-font-display);font-weight:800;font-size:2.4rem;color:var(--tw-ink);line-height:1.05}
.tw-plan__price .cur{font-size:1.1rem;color:var(--tw-muted);font-weight:600;vertical-align:top}
.tw-plan--featured .tw-plan__price .cur{color:var(--tw-cyan)}
.tw-plan__per{color:var(--tw-muted);font-size:.9rem;margin-bottom:1.3rem}
.tw-plan--featured .tw-plan__per{color:var(--tw-muted-dark)}
.tw-plan__list{list-style:none;padding:0;margin:0 0 1.6rem;flex:1}
.tw-plan__list li{display:flex;gap:.6rem;align-items:flex-start;padding:.5rem 0;font-size:.96rem;color:var(--tw-text)}
.tw-plan--featured .tw-plan__list li{color:var(--tw-text-dark)}
.tw-plan__list li svg{width:18px;height:18px;color:var(--tw-green);flex:none;margin-top:3px}
.tw-plan--featured .tw-plan__list li svg{color:var(--tw-cyan)}
.tw-plan__note{text-align:center;font-size:.88rem;color:var(--tw-muted);margin-top:1.4rem}

/* --------------------------------------------------------- Testimonials -- */
.tw-quote{
  background:#fff;border:1px solid var(--tw-line);border-radius:var(--tw-radius);
  padding:1.8rem;box-shadow:var(--tw-shadow-sm);position:relative;
}
.tw-quote__mark{font-family:var(--tw-font-display);font-size:3.4rem;line-height:.6;color:var(--tw-brand);opacity:.18;font-weight:800}
.tw-quote p{font-size:1.04rem;color:var(--tw-text);margin:.4rem 0 1.3rem;font-style:italic}
.tw-quote__by{display:flex;align-items:center;gap:.8rem}
.tw-quote__av{width:46px;height:46px;border-radius:50%;background:var(--tw-grad);display:grid;place-items:center;color:#fff;font-family:var(--tw-font-display);font-weight:700;flex:none}
.tw-quote__by strong{display:block;font-family:var(--tw-font-display);color:var(--tw-ink);font-size:.98rem}
.tw-quote__by span{color:var(--tw-muted);font-size:.86rem}

/* --------------------------------------------------------- FAQ ----------- */
.tw-faq{max-width:840px;margin-inline:auto}
.tw-faq__item{border:1px solid var(--tw-line);border-radius:var(--tw-radius-sm);margin-bottom:.9rem;background:#fff;overflow:hidden;transition:border-color .2s ease,box-shadow .2s ease}
.tw-faq__item.is-open{border-color:var(--tw-brand);box-shadow:var(--tw-shadow-sm)}
.tw-faq__q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;background:none;border:0;cursor:pointer;padding:1.25rem 1.4rem;text-align:left;font-family:var(--tw-font-display);font-weight:600;font-size:1.05rem;color:var(--tw-ink)}
.tw-faq__q .ico{width:30px;height:30px;border-radius:50%;display:grid;place-items:center;background:var(--tw-mist);color:var(--tw-brand);flex:none;transition:transform .25s ease,background .2s ease}
.tw-faq__item.is-open .tw-faq__q .ico{transform:rotate(45deg);background:var(--tw-grad);color:#fff}
.tw-faq__a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.tw-faq__a-inner{padding:0 1.4rem 1.3rem;color:var(--tw-muted)}

/* --------------------------------------------------------- CTA band ------ */
.tw-cta-band{position:relative;overflow:hidden;text-align:center}
.tw-cta-band .tw-container{position:relative;z-index:2}
.tw-cta-band h2{max-width:18ch;margin-inline:auto}
.tw-cta-band p{max-width:54ch;margin:0 auto 2rem;font-size:1.1rem}
.tw-cta-band__glow{position:absolute;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(124,58,237,.5),transparent 65%);top:-180px;left:50%;transform:translateX(-50%);z-index:1}

/* --------------------------------------------------------- Forms --------- */
.tw-form{display:grid;gap:1rem}
.tw-form--card{background:#fff;border:1px solid var(--tw-line);border-radius:var(--tw-radius);padding:clamp(1.5rem,3vw,2.2rem);box-shadow:var(--tw-shadow)}
.tw-field label{display:block;font-family:var(--tw-font-display);font-weight:600;font-size:.9rem;color:var(--tw-ink);margin-bottom:.4rem}
.tw-field label .req{color:var(--tw-magenta)}
.tw-form input,.tw-form select,.tw-form textarea{
  width:100%;padding:.85rem 1rem;border:1.5px solid var(--tw-line);border-radius:12px;
  font-family:var(--tw-font-body);font-size:1rem;color:var(--tw-text);background:#fff;transition:border-color .2s ease,box-shadow .2s ease;
}
.tw-form input:focus,.tw-form select:focus,.tw-form textarea:focus{outline:0;border-color:var(--tw-brand);box-shadow:0 0 0 4px rgba(124,58,237,.14)}
.tw-form textarea{min-height:120px;resize:vertical}
.tw-form__row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.tw-hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}
.tw-form__msg{padding:.9rem 1.1rem;border-radius:12px;font-size:.95rem;display:none}
.tw-form__msg.is-ok{display:block;background:#e9f9f0;color:#0f7a44;border:1px solid #b6e6cb}
.tw-form__msg.is-err{display:block;background:#fdecef;color:#b4123a;border:1px solid #f6c2cd}
.tw-consent{display:flex;gap:.6rem;align-items:flex-start;font-size:.85rem;color:var(--tw-muted)}
.tw-consent input{width:auto;margin-top:4px}

/* --------------------------------------------------------- Inner page ---- */
.tw-pagehero{position:relative;overflow:hidden;padding-block:clamp(74px,9vw,120px) clamp(48px,6vw,80px)}
.tw-pagehero h1{max-width:18ch}
.tw-pagehero p{font-size:1.15rem;color:var(--tw-muted-dark);max-width:58ch;margin-top:.6rem}
.tw-breadcrumb{display:flex;flex-wrap:wrap;gap:.4rem;font-size:.85rem;color:var(--tw-muted-dark);margin-bottom:1.2rem}
.tw-breadcrumb a{color:var(--tw-cyan)}
.tw-breadcrumb span[aria-current]{color:#fff}

.tw-prose{max-width:760px}
.tw-prose h2{margin-top:2.2rem}
.tw-prose h3{margin-top:1.6rem}
.tw-prose ul li{margin-bottom:.4rem}
.tw-prose img{border-radius:var(--tw-radius);margin:1.6rem 0}
.tw-content-wrap{display:grid;grid-template-columns:1fr;gap:clamp(40px,6vw,80px)}
.tw-content-wrap.has-sidebar{grid-template-columns:minmax(0,1fr) 320px}

/* Sidebar / widgets */
.tw-sidebar .widget{background:#fff;border:1px solid var(--tw-line);border-radius:var(--tw-radius);padding:1.4rem;margin-bottom:1.4rem;box-shadow:var(--tw-shadow-sm)}
.tw-sidebar .widget-title{font-family:var(--tw-font-display);font-size:1.1rem;margin-bottom:.9rem}
.tw-sidebar ul{list-style:none;padding:0;margin:0}
.tw-sidebar ul li{padding:.4rem 0;border-bottom:1px dashed var(--tw-line)}
.tw-sidebar ul li:last-child{border-bottom:0}

/* --------------------------------------------------------- Blog ---------- */
.tw-post-card{background:#fff;border:1px solid var(--tw-line);border-radius:var(--tw-radius);overflow:hidden;box-shadow:var(--tw-shadow-sm);transition:transform .22s ease,box-shadow .25s ease;display:flex;flex-direction:column}
.tw-post-card:hover{transform:translateY(-6px);box-shadow:var(--tw-shadow)}
.tw-post-card__thumb{aspect-ratio:16/10;background:var(--tw-grad);position:relative;overflow:hidden}
.tw-post-card__thumb img{width:100%;height:100%;object-fit:cover}
.tw-post-card__cat{position:absolute;top:1rem;left:1rem;background:rgba(255,255,255,.92);color:var(--tw-brand);font-size:.76rem;font-weight:700;padding:.35rem .75rem;border-radius:999px}
.tw-post-card__body{padding:1.4rem;display:flex;flex-direction:column;flex:1}
.tw-post-card__body h3{font-size:1.18rem;margin-bottom:.5rem}
.tw-post-card__body h3 a{color:var(--tw-ink)}
.tw-post-card__body h3 a:hover{color:var(--tw-brand)}
.tw-post-card__meta{font-size:.82rem;color:var(--tw-muted);margin-top:auto;padding-top:1rem;display:flex;gap:.8rem}
.tw-post-card__excerpt{color:var(--tw-muted);font-size:.95rem}

.tw-pagination{display:flex;gap:.5rem;justify-content:center;margin-top:2.4rem;flex-wrap:wrap}
.tw-pagination .page-numbers{display:grid;place-items:center;min-width:44px;height:44px;padding:0 .6rem;border-radius:12px;border:1px solid var(--tw-line);font-family:var(--tw-font-display);font-weight:600;color:var(--tw-text);background:#fff}
.tw-pagination .page-numbers.current{background:var(--tw-grad);color:#fff;border-color:transparent}
.tw-pagination .page-numbers:hover{border-color:var(--tw-brand);color:var(--tw-brand)}
.tw-pagination .page-numbers.current:hover{color:#fff}

/* --------------------------------------------------------- Footer -------- */
.tw-footer{background:#0d0720;color:var(--tw-muted-dark);padding-top:clamp(56px,7vw,84px)}
.tw-footer a{color:var(--tw-muted-dark)}
.tw-footer a:hover{color:#fff}
.tw-footer__top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.4fr;gap:2.2rem;padding-bottom:2.6rem;border-bottom:1px solid rgba(255,255,255,.08)}
.tw-footer__brand .tw-brand-link{color:#fff;margin-bottom:1rem}
.tw-footer__brand p{font-size:.95rem;max-width:34ch}
.tw-footer h4{color:#fff;font-size:.95rem;letter-spacing:.04em;text-transform:uppercase;margin-bottom:1.1rem;font-family:var(--tw-font-display)}
.tw-footer ul{list-style:none;padding:0;margin:0}
.tw-footer ul li{margin-bottom:.6rem;font-size:.95rem}
.tw-footer__contact li{display:flex;gap:.6rem;align-items:flex-start;margin-bottom:.8rem;font-size:.95rem}
.tw-footer__contact svg{width:18px;height:18px;color:var(--tw-cyan);flex:none;margin-top:3px}
.tw-social{display:flex;gap:.6rem;margin-top:1.2rem}
.tw-social a{width:40px;height:40px;border-radius:10px;display:grid;place-items:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:#fff}
.tw-social a:hover{background:var(--tw-grad);border-color:transparent}
.tw-social svg{width:18px;height:18px}
.tw-footer__bottom{display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;align-items:center;padding:1.6rem 0;font-size:.85rem}
.tw-footer__bottom-links{display:flex;gap:1.2rem;flex-wrap:wrap}

/* --------------------------------------------------------- Floats -------- */
.tw-wa-float{
  position:fixed;right:20px;bottom:20px;z-index:130;width:58px;height:58px;border-radius:50%;
  background:#25d366;color:#fff;display:grid;place-items:center;box-shadow:0 14px 34px -10px rgba(37,211,102,.6);
  transition:transform .2s ease;
}
.tw-wa-float:hover{transform:scale(1.08);color:#fff}
.tw-wa-float svg{width:30px;height:30px}
.tw-wa-float::after{content:"";position:absolute;inset:0;border-radius:50%;border:2px solid #25d366;animation:tw-ring 2.4s ease infinite}

.tw-mobilebar{
  position:fixed;left:0;right:0;bottom:0;z-index:129;display:none;
  grid-template-columns:1fr 1fr 1.3fr;gap:1px;background:var(--tw-line);
  box-shadow:0 -8px 24px -12px rgba(20,10,40,.3);
}
.tw-mobilebar a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.2rem;padding:.7rem .4rem;background:#fff;color:var(--tw-ink);font-size:.74rem;font-weight:600;font-family:var(--tw-font-display)}
.tw-mobilebar a svg{width:20px;height:20px}
.tw-mobilebar a.call{color:var(--tw-brand)}
.tw-mobilebar a.wa{color:#1faa52}
.tw-mobilebar a.audit{background:var(--tw-grad);color:#fff}

/* --------------------------------------------------------- Utilities ----- */
.tw-reveal{opacity:0;transform:translateY(26px);transition:opacity .6s ease,transform .6s ease}
.tw-reveal.is-in{opacity:1;transform:none}
.tw-center{text-align:center}
.tw-mt{margin-top:2.4rem}
.tw-divider{height:1px;background:var(--tw-line);border:0;margin:0}

/* --------------------------------------------------------- Animations ---- */
@keyframes tw-spin{to{transform:rotate(360deg)}}
@keyframes tw-pulse{0%,100%{opacity:1}50%{opacity:.35}}
@keyframes tw-ring{0%{transform:scale(1);opacity:.8}100%{transform:scale(1.7);opacity:0}}
@keyframes tw-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.tw-card-snapshot{animation:tw-float 6s ease-in-out infinite}

/* --------------------------------------------------------- Responsive ---- */
@media (max-width:1024px){
  .tw-hero__grid{grid-template-columns:1fr;gap:48px}
  .tw-hero__visual{min-height:340px}
  .tw-grid--4,.tw-stats,.tw-trustbar__grid,.tw-steps{grid-template-columns:repeat(2,1fr)}
  .tw-pricing{grid-template-columns:1fr;max-width:480px;margin-inline:auto}
  .tw-plan--featured{transform:none}
  .tw-plan--featured:hover{transform:translateY(-6px)}
  .tw-footer__top{grid-template-columns:1fr 1fr}
  .tw-step::after{display:none}
  .tw-content-wrap.has-sidebar{grid-template-columns:1fr}
}
@media (max-width:768px){
  body{font-size:16px}
  .tw-nav,.tw-header__cta .tw-btn{display:none}
  .tw-nav-toggle{display:flex}
  .tw-nav.is-mobile-open{
    display:flex;flex-direction:column;position:absolute;top:84px;left:0;right:0;
    background:#fff;border-top:1px solid var(--tw-line);box-shadow:var(--tw-shadow);
    padding:1rem var(--tw-gutter) 1.6rem;gap:.2rem;align-items:stretch;
  }
  .tw-nav.is-mobile-open a{color:var(--tw-text);padding:.85rem .4rem;border-bottom:1px solid var(--tw-line);border-radius:0}
  .tw-nav.is-mobile-open .sub-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;padding:0 0 0 1rem}
  .tw-grid--2,.tw-grid--3,.tw-grid--4,.tw-stats,.tw-steps,.tw-trustbar__grid{grid-template-columns:1fr}
  .tw-case,.tw-case:nth-child(even){grid-template-columns:1fr}
  .tw-case:nth-child(even) .tw-case__media{order:0}
  .tw-form__row{grid-template-columns:1fr}
  .tw-mobilebar{display:grid}
  .tw-wa-float{bottom:78px}
  .tw-footer__top{grid-template-columns:1fr}
  body{padding-bottom:64px}
}
@media (max-width:480px){
  .tw-stats,.tw-grid--3{grid-template-columns:1fr}
  .tw-btn-row{flex-direction:column;align-items:stretch}
  .tw-btn-row .tw-btn{width:100%}
}

/* --------------------------------------------------------- Reduced motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
  .tw-reveal{opacity:1;transform:none}
}

/* WordPress core alignment / caption support */
.alignleft{float:left;margin:.4rem 1.5rem 1rem 0}
.alignright{float:right;margin:.4rem 0 1rem 1.5rem}
.aligncenter{margin-inline:auto;display:block}
.wp-caption-text,.wp-element-caption{font-size:.85rem;color:var(--tw-muted);text-align:center;margin-top:.4rem}
.screen-reader-text{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}
.sticky,.gallery-caption{display:block}
.bypostauthor{display:block}

/* ===========================================================================
   Supplemental styles for template markup (navigation lists, forms,
   blog detail, landing, metrics, utilities).
   ======================================================================== */

/* Accessibility skip link */
.tw-skip-link{position:absolute;left:-9999px;top:0;z-index:1000;background:var(--tw-ink);color:#fff;padding:.7rem 1.1rem;border-radius:0 0 12px 0;font-weight:600}
.tw-skip-link:focus{left:0}

/* Primary navigation list (the UL inside .tw-nav) */
.tw-nav-list{display:flex;align-items:center;gap:.3rem;list-style:none;margin:0;padding:0}
.tw-nav-list>li{position:relative}
.tw-header__brand{display:flex;align-items:center}
.tw-header__cta{display:flex;align-items:center;gap:.8rem}
.tw-hide-sm{display:inline}
.tw-header--landing .tw-header__inner{height:72px}

/* Mobile: stack the generated list */
@media (max-width:768px){
  .tw-nav.is-mobile-open .tw-nav-list{display:flex;flex-direction:column;align-items:stretch;width:100%;gap:0}
  .tw-nav.is-mobile-open .tw-nav-list>li{width:100%}
  .tw-hide-sm{display:none}
}

/* Two-column content + sidebar */
.tw-main-col{min-width:0}
.tw-content-wrap:has(.tw-sidebar){grid-template-columns:minmax(0,1fr) 320px}
@media (max-width:980px){
  .tw-content-wrap:has(.tw-sidebar){grid-template-columns:1fr}
}

/* Footer columns */
.tw-footer__col h4,.tw-footer__contact-col h4{font-size:1.05rem;color:#fff;margin-bottom:1rem}
.tw-footer__menu{list-style:none;margin:0;padding:0}
.tw-footer__menu li{margin-bottom:.6rem}
.tw-footer__menu a{color:var(--tw-muted-dark);font-size:.95rem}
.tw-footer__menu a:hover{color:#fff}

/* Soft card variant + "more" link spacing */
.tw-card--soft{background:#fff}
.tw-dark .tw-card--soft{background:rgba(255,255,255,.045)}
.tw-card__more{margin-top:.2rem}

/* Snapshot note */
.tw-card-snapshot__note{font-size:.78rem;color:var(--tw-muted);margin-top:1rem;line-height:1.4}

/* Page hero icon badge */
.tw-pagehero__ico{width:60px;height:60px;border-radius:16px;display:grid;place-items:center;background:rgba(124,58,237,.22);color:var(--tw-cyan);margin-bottom:1.2rem}
.tw-pagehero__ico svg{width:30px;height:30px}
.tw-post-byline{color:var(--tw-muted-dark);font-size:.95rem;margin-top:.4rem}

/* Form helper text/titles */
.tw-form-title{font-size:1.4rem;margin-bottom:.4rem}
.tw-form-lead{color:var(--tw-muted);font-size:.95rem;margin-bottom:1.3rem}
.tw-form--card .tw-form-lead{margin-bottom:1.3rem}

/* Search form */
.tw-searchform{display:flex;gap:.5rem;max-width:520px}
.tw-searchform__input{flex:1;border:1px solid var(--tw-line);border-radius:12px;padding:.85rem 1rem;font:inherit;background:#fff;color:var(--tw-ink)}
.tw-searchform__input:focus{outline:none;border-color:var(--tw-brand);box-shadow:0 0 0 3px rgba(124,58,237,.15)}
.tw-searchform__btn{flex:none;width:50px;border:0;border-radius:12px;background:var(--tw-grad);color:#fff;cursor:pointer;display:grid;place-items:center}
.tw-searchform__btn svg{width:20px;height:20px}
.tw-center .tw-searchform{margin-inline:auto}

/* Empty / 404 states */
.tw-empty{max-width:600px;margin-inline:auto;text-align:center}
.tw-empty .tw-searchform{margin:1.4rem auto 0}
.tw-search-term{color:var(--tw-brand)}

/* Blog single extras */
.tw-post-hero-img{margin:0 0 2rem;border-radius:var(--tw-radius);overflow:hidden}
.tw-post-hero-img img{width:100%;height:auto;display:block}
.tw-post-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:2rem}
.tw-post-tags a{font-size:.82rem;background:var(--tw-mist);color:var(--tw-brand);padding:.35rem .8rem;border-radius:999px}
.tw-post-nav{display:flex;justify-content:space-between;gap:1rem;margin-top:2.5rem;padding-top:1.6rem;border-top:1px solid var(--tw-line);flex-wrap:wrap}
.tw-post-nav a{font-family:var(--tw-font-display);font-weight:600;color:var(--tw-ink);max-width:46%}
.tw-post-nav a:hover{color:var(--tw-brand)}
.tw-page-links{margin-top:1.5rem;font-weight:600}

/* Comments */
.tw-comments{margin-top:3rem;padding-top:2rem;border-top:1px solid var(--tw-line)}
.tw-comments__title,.tw-comments__reply-title{font-size:1.4rem;margin-bottom:1.4rem}
.tw-comment-list{list-style:none;margin:0 0 2rem;padding:0}
.tw-comment-list ol{list-style:none;padding-left:1.6rem}
.tw-comment-list .comment-body{padding:1.2rem 0;border-bottom:1px solid var(--tw-line)}
.tw-comments input[type=text],.tw-comments input[type=email],.tw-comments input[type=url],.tw-comments textarea{width:100%;border:1px solid var(--tw-line);border-radius:12px;padding:.8rem 1rem;font:inherit;margin-bottom:1rem;background:#fff}
.tw-comments textarea{min-height:140px}

/* Results / metrics split */
.tw-results-split{align-items:center;gap:clamp(32px,5vw,64px)}
.tw-metric-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.tw-metric{display:flex;align-items:center;gap:.9rem;padding:1.2rem;border-radius:var(--tw-radius);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1)}
.tw-metric__ico{width:44px;height:44px;flex:none;border-radius:12px;display:grid;place-items:center;background:rgba(124,58,237,.22);color:var(--tw-cyan)}
.tw-metric__ico svg{width:22px;height:22px}
.tw-metric__label{font-family:var(--tw-font-display);font-weight:600;font-size:.95rem;color:#fff;line-height:1.3}
@media (max-width:560px){.tw-metric-grid{grid-template-columns:1fr}}

/* Case study detail blocks */
.tw-case-detail{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem}
.tw-case-detail__block{padding:1.8rem;border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:#fff;box-shadow:var(--tw-shadow-sm)}
.tw-case-detail__block .tw-step__num{position:static;margin-bottom:1rem}
.tw-case-detail__block h2{font-size:1.2rem;margin-bottom:.6rem}
.tw-case-detail__block p{color:var(--tw-muted)}
@media (max-width:860px){.tw-case-detail{grid-template-columns:1fr}}

/* Landing hero two-column */
.tw-landing-hero .tw-hero__grid{grid-template-columns:1.05fr .95fr;align-items:start}
.tw-hero__copy{min-width:0}
.tw-hero__form{min-width:0}
.tw-prose--ondark{color:var(--tw-muted-dark)}
.tw-prose--ondark h2,.tw-prose--ondark h3,.tw-prose--ondark h4,.tw-prose--ondark strong{color:#fff}
.tw-prose--ondark a{color:var(--tw-cyan)}
.tw-prose--ondark ul li{margin-bottom:.4rem}
@media (max-width:860px){.tw-landing-hero .tw-hero__grid{grid-template-columns:1fr}}

/* Quote caption layout (testimonials) */
.tw-quote__by{display:flex;align-items:center;gap:.8rem;margin-top:1.2rem}
.tw-quote__by strong{display:block;font-family:var(--tw-font-display)}
.tw-quote__by em{font-style:normal;font-size:.88rem;color:var(--tw-muted)}
.tw-quote__av img{width:48px;height:48px;border-radius:50%;object-fit:cover}

/* Canvas template body */
.tw-canvas{background:#fff}

/* Contact page */
.tw-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;margin-bottom:2rem}
.tw-contact-item{display:flex;gap:.9rem;align-items:flex-start;padding:1.2rem;border:1px solid var(--tw-line);border-radius:var(--tw-radius);background:#fff}
.tw-contact-item__ico{width:44px;height:44px;flex:none;border-radius:12px;display:grid;place-items:center;background:var(--tw-grad-soft);color:var(--tw-brand)}
.tw-contact-item__ico svg{width:22px;height:22px}
.tw-contact-item strong{display:block;font-family:var(--tw-font-display);font-size:.95rem;margin-bottom:.15rem}
.tw-contact-item span,.tw-contact-item a{color:var(--tw-muted);font-size:.92rem}
.tw-contact-item a:hover{color:var(--tw-brand)}
.tw-map{margin-top:.5rem}
@media (max-width:560px){.tw-contact-grid{grid-template-columns:1fr}}

/* Featured-image banner (services, cases, About) */
.tw-feature-banner{margin:-3.4rem auto 0;max-width:1100px;border-radius:22px;overflow:hidden;box-shadow:0 30px 70px -30px rgba(20,10,40,.55);border:1px solid rgba(255,255,255,.08);position:relative;z-index:2;line-height:0}
.tw-feature-banner img{width:100%;height:auto;display:block}
@media (max-width:782px){.tw-feature-banner{margin-top:-2rem;border-radius:16px}}
