/* ============================================================
   wp.css — COVOTEL GLOBAL STYLESHEET
   Author  : Pritesh
   Usage   : Linked once in navbar.html — applies to ALL pages
   ============================================================

   HOW TO USE CSS VARIABLES (for next developer):
   ─────────────────────────────────────────────
   Color examples:
     color: var(--color-navy);
     background: var(--color-green);
     color: var(--color-text-muted);

   Font examples:
     font-family: var(--font-serif);
     font-family: var(--font-sans);

   Spacing examples:
     padding: var(--section-padding-v) var(--section-padding-h);

   Border-radius examples:
     border-radius: var(--radius-card);
     border-radius: var(--radius-pill);
============================================================ */


/* ============================================================
   :ROOT — ALL GLOBAL TOKENS
   ============================================================ */
:root {

  /* ── Brand Colors ── */
  --color-navy:          #053679;       /* primary navy blue */
  --color-navy-dark:     #0a2a6e;       /* darker navy (gradients) */
  --color-navy-deeper:   #0d1f4f;       /* deepest navy (gradients) */
  --color-navy-hover:    #074196;       /* navy hover state */
  --color-green:         #25D366;       /* WhatsApp green */
  --color-green-dark:    #16a34a;       /* darker green (icons, status) */
  --color-green-cta:     #22c55e;       /* CTA section green */
  --color-green-cta-hover: #4ade80;     /* CTA hover green */

  /* ── Background Colors ── */
  --bg-page-light:       #f5f4f0;       /* hero + features bg */
  --bg-page-blue:        #eef1f7;       /* why-choose + how-it-works bg */
  --bg-page-bluish:      #f0f4fb;       /* integrations section bg */
  --bg-white:            #ffffff;       /* pure white */
  --bg-card:             #f9fbff;       /* card gradient end */
  --bg-cta:              #085394;       /* CTA dark section */

  /* ── Text Colors ── */
  --color-text-dark:     #0a1628;       /* headings / dark text */
  --color-text-body:     #4b5563;       /* body paragraphs */
  --color-text-muted:    #64748b;       /* subtitles / descriptions */
  --color-text-light:    #9ca3af;       /* labels / meta */
  --color-text-grey:     #6b7280;       /* card descriptions */
  --color-text-grey2:    #667085;       /* integration desc */

  /* ── Border Colors ── */
  --border-light:        #e2e8f0;       /* card borders */
  --border-lighter:      #e8edf5;       /* section dividers */
  --border-hover:        #c7d7f5;       /* card hover border */
  --border-navy-faint:   rgba(5, 54, 121, 0.12);  /* subtle navy border */

  /* ── Fonts ── */
  --font-sans:           'Nunito Sans', sans-serif;
  --font-serif:          'Georgia', 'Times New Roman', serif;
  --font-sora:           'Sora', sans-serif;

  /* ── Font Sizes ── */
  --text-eyebrow:        12px;          /* section eyebrow labels */
  --text-card-title:     15px;          /* card headings */
  --text-card-desc:      13px;          /* card descriptions */
  --text-section-title:  26px;          /* section main headings */
  --text-body:           15px;          /* body paragraphs */
  --text-label:          10px;          /* small uppercase labels */

  /* ── Spacing — Section Padding ── */
  --section-padding-h:   60px;          /* horizontal padding all sections */
  --section-padding-v:   80px;          /* vertical padding all sections */
  --section-padding-h-tablet: 40px;     /* tablet horizontal */
  --section-padding-v-tablet: 60px;     /* tablet vertical */
  --section-padding-h-mobile: 20px;     /* mobile horizontal */
  --section-padding-v-mobile: 48px;     /* mobile vertical */

  /* ── Border Radius ── */
  --radius-card:         16px;          /* standard card radius */
  --radius-card-sm:      12px;          /* small card / icon radius */
  --radius-pill:         50px;          /* eyebrow pill badges */
  --radius-pill-full:    100px;         /* full pill (badges, buttons) */
  --radius-btn:          10px;          /* primary/ghost buttons */
  --radius-panel:        32px;          /* hero right panel */

  /* ── Shadows ── */
  --shadow-card:         0 4px 14px rgba(0, 0, 0, 0.04);
  --shadow-card-hover:   0 12px 30px rgba(5, 54, 121, 0.12);
  --shadow-float:        0 8px 32px rgba(5, 54, 121, 0.18), 0 2px 8px rgba(0,0,0,0.08);

  /* ── Transitions ── */
  --transition-card:     transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  --transition-fast:     0.2s ease;
  --transition-btn:      transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;

  /* ── Icon Backgrounds (reusable) ── */
  --icon-bg-blue:        rgba(5, 54, 121, 0.08);
  --icon-bg-navy:        rgba(5, 54, 121, 0.07);
  --icon-bg-green:       rgba(37, 211, 102, 0.10);
  --icon-border-blue:    rgba(5, 54, 121, 0.12);
  --icon-border-green:   rgba(37, 211, 102, 0.18);

  /* ── Max Widths ── */
  --container-max:       1140px;
  --cta-inner-max:       680px;
}


/* ============================================================
   HERO SECTION  (.cvh-)
   ============================================================ */

.cvh {
  position: relative;
  background: var(--bg-page-light);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--section-padding-v) var(--section-padding-h);
  font-family: var(--font-sans);
}

.cvh-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border-navy-faint) 1px, transparent 1px);
  background-size: 26px 26px;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 80% at 25% 50%, transparent 40%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 25% 50%, transparent 40%, black 100%);
}

.cvh-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.cvh-left {
  flex: 0 0 46%;
  max-width: 46%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge */
.cvh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--icon-bg-navy);
  border: 1px solid rgba(5, 54, 121, 0.15);
  border-radius: var(--radius-pill);
  font-size: 11px;
  color: var(--color-navy);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}

.cvh-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22);
  animation: cvhp 2s infinite;
}

@keyframes cvhp {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22); }
  50%       { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.07); }
}

/* Headline */
.cvh-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  margin: 0 0 20px 0;
}

.cvh-accent { color: var(--color-green); font-style: normal; }

/* Description */
.cvh-desc {
  font-family: var(--font-serif);
  font-size: var(--text-body);
  color: var(--color-text-body);
  line-height: 1.75;
  max-width: 440px;
  margin: 0 0 32px 0;
}

.cvh-desc strong {
  color: var(--color-text-dark);
  font-weight: 700;
}

/* CTA Buttons */
.cvh-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

/* Primary Button */
.cvh-btn-p {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--color-navy);
  color: var(--bg-white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-btn);
  border: 2px solid var(--color-navy);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--transition-fast);
}

.cvh-btn-p::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--color-navy-hover);
  transition: left 0.4s ease;
  z-index: -1;
}

.cvh-btn-p:hover::before { left: 0; }
.cvh-btn-p:hover { transform: translateY(-2px); }

/* Ghost Button */
.cvh-btn-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(5, 54, 121, 0.28);
  background: var(--bg-white);
  cursor: pointer;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.cvh-btn-g:hover {
  border-color: var(--color-navy);
  transform: translateY(-2px);
}

/* Stats Row */
.cvh-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cvh-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cvh-stat-n {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.cvh-stat-l {
  font-family: var(--font-sans);
  font-size: var(--text-label);
  color: var(--color-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.cvh-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border-navy-faint);
  flex-shrink: 0;
}

/* Right Panel */
.cvh-right {
  position: relative;
  flex: 0 0 48%;
  max-width: 48%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cvh-panel {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--color-navy) 0%, var(--color-navy-dark) 60%, var(--color-navy-deeper) 100%);
  border-radius: var(--radius-panel);
  z-index: 0;
  overflow: hidden;
}

.cvh-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: inherit;
  pointer-events: none;
}

.cvh-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: inherit;
  pointer-events: none;
}

.cvh-wa-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 60px 40px;
}

.cvh-wa-card {
  background: var(--bg-white);
  border-radius: var(--radius-panel);
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.cvh-wa-svg { width: 110px; height: 110px; }

.cvh-wa-pill {
  background: var(--color-green);
  color: var(--bg-white);
  border-radius: 24px;
  padding: 10px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cvh-wa-tag {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -8px;
}

/* SLA Floating Card */


@keyframes cvh-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}




.cvh-sla-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  animation: cvhp 2s infinite;
}




/* ============================================================
   WHY CHOOSE COVOTEL  (.cw2-)
   ============================================================ */

.cw2-section {
  background: var(--bg-page-blue);
  padding: var(--section-padding-v) var(--section-padding-h);
  font-family: var(--font-serif);
}

.cw2-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.cw2-header {
  text-align: left;
  margin-bottom: 48px;
}

/* Eyebrow */
.cw2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--icon-bg-navy);
  border: 1px solid rgba(5, 54, 121, 0.14);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  font-family: var(--font-serif);
}

.cw2-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
  animation: cw2-pulse 2s ease-in-out infinite;
}

@keyframes cw2-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,211,102,0.20); }
  50%       { box-shadow: 0 0 0 7px rgba(37,211,102,0.07); }
}

.cw2-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.cw2-title {
  flex: 1;
  font-size: var(--text-section-title);
  font-weight: 900;
  line-height: 1.12;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  margin: 0;
  font-family: var(--font-serif);
  text-align: left;
}

.cw2-title-green { color: var(--color-green); font-style: normal; }

.cw2-subtitle {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  max-width: 320px;
  margin: 0;
  line-height: 1.7;
  font-family: var(--font-serif);
  font-weight: 400;
  text-align: right;
  flex-shrink: 0;
}

/* Cards Grid */
.cw2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.cw2-card {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-card);
  position: relative;
  overflow: hidden;
}

.cw2-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-hover);
}

.cw2-card::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, var(--icon-bg-blue), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cw2-card:hover::before { opacity: 1; }
.cw2-card--accent { border-color: rgba(5, 54, 121, 0.16); }

/* Card Icon */
.cw2-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-card-sm);
  flex-shrink: 0;
  margin: 0 auto 18px;
  transition: transform 0.25s ease;
}

.cw2-card:hover .cw2-card-icon { transform: scale(1.08); }

/* Icon colour variants — reusable across sections */
.cw2-icon--blue  { background: var(--icon-bg-blue);  color: var(--color-navy); border: 1px solid var(--icon-border-blue); }
.cw2-icon--navy  { background: var(--icon-bg-navy);  color: var(--color-navy); border: 1px solid rgba(5,54,121,0.11); }
.cw2-icon--green { background: var(--icon-bg-green); color: var(--color-green-dark); border: 1px solid var(--icon-border-green); }

.cw2-card-title {
  font-size: var(--text-card-title);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 10px;
  line-height: 1.3;
  font-family: var(--font-serif);
  text-align: center;
}

.cw2-card-desc {
  font-size: var(--text-card-desc);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  text-align: center;
  flex: 1;
}


/* ============================================================
   FEATURES SECTION  (.feat-)
   ============================================================ */

.feat-section {
  background: var(--bg-page-light);
  padding: var(--section-padding-v) var(--section-padding-h);
  font-family: var(--font-serif);
}

.feat-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.feat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--icon-bg-navy);
  border: 1px solid rgba(5, 54, 121, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  font-family: var(--font-serif);
}

.feat-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
  animation: feat-pulse 2s ease-in-out infinite;
}

@keyframes feat-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,211,102,0.20); }
  50%       { box-shadow: 0 0 0 7px rgba(37,211,102,0.07); }
}

.feat-title {
  font-size: var(--text-section-title);
  font-weight: 900;
  max-width: 320px;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  font-family: var(--font-serif);
  line-height: 1.15;
}

.feat-title-blue { color: var(--color-navy); font-style: normal; }

.feat-subtitle {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  max-width: 320px;
  line-height: 1.7;
  font-family: var(--font-serif);
  text-align: right;
  padding-top: 8px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-card);
  position: relative;
  overflow: hidden;
}

.feat-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-hover);
}

.feat-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.feat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-card-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.feat-card:hover .feat-icon { transform: scale(1.06); }

.feat-icon img { width: 28px; height: 28px; object-fit: contain; }

/* Icon variants — same pattern as cw2 */
.feat-icon--blue  { background: var(--icon-bg-blue);  border: 1px solid var(--icon-border-blue); }
.feat-icon--navy  { background: var(--icon-bg-navy);  border: 1px solid rgba(5,54,121,0.10); }
.feat-icon--green { background: var(--icon-bg-green); border: 1px solid var(--icon-border-green); }

.feat-card-title {
  font-size: var(--text-card-title);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.3;
  font-family: var(--font-serif);
}

.feat-card-desc {
  font-size: var(--text-card-desc);
  color: var(--color-text-muted);
  line-height: 1.68;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  margin-left: 68px;
  margin-top: -14px;
}


/* ============================================================
   HOW IT WORKS  (.hiw-)
   ============================================================ */

.hiw-section {
  background: var(--bg-page-blue);
  padding: var(--section-padding-v) var(--section-padding-h);
  font-family: var(--font-serif);
}

.hiw-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.hiw-header {
  text-align: left;
  margin-bottom: 48px;
}

.hiw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--icon-bg-navy);
  border: 1px solid rgba(5, 54, 121, 0.14);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  font-family: var(--font-serif);
}

.hiw-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--color-navy);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(5, 54, 121, 0.18);
  animation: hiw-pulse 2s ease-in-out infinite;
}

@keyframes hiw-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(5,54,121,0.18); }
  50%       { box-shadow: 0 0 0 7px rgba(5,54,121,0.06); }
}

.hiw-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hiw-title {
  flex: 1;
  font-size: var(--text-section-title);
  font-weight: 900;
  line-height: 1.12;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  margin: 0;
  font-family: var(--font-serif);
}

.hiw-title-blue { color: var(--color-navy); font-style: normal; }

.hiw-subtitle {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  max-width: 320px;
  margin: 0;
  line-height: 1.7;
  font-family: var(--font-serif);
  font-weight: 400;
  flex-shrink: 0;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.hiw-card {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-card);
  position: relative;
  overflow: hidden;
}

.hiw-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-hover);
}

.hiw-card::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, var(--icon-bg-blue), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hiw-card:hover::before { opacity: 1; }
.hiw-card--accent { border-color: rgba(5, 54, 121, 0.16); }

.hiw-step-num {
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  background: var(--icon-bg-navy);
  border: 1px solid rgba(5, 54, 121, 0.14);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  font-family: var(--font-serif);
  text-transform: uppercase;
}

.hiw-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-card-sm);
  flex-shrink: 0;
  margin: 0 auto 18px;
  transition: transform 0.25s ease;
}

.hiw-card:hover .hiw-card-icon { transform: scale(1.08); }

.hiw-icon--blue  { background: var(--icon-bg-blue);  color: var(--color-navy); border: 1px solid var(--icon-border-blue); }
.hiw-icon--navy  { background: var(--icon-bg-navy);  color: var(--color-navy); border: 1px solid rgba(5,54,121,0.11); }
.hiw-icon--solid { background: var(--color-navy);    color: var(--bg-white);   border: 1px solid var(--color-navy); }

.hiw-card-title {
  font-size: var(--text-card-title);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 10px;
  line-height: 1.3;
  font-family: var(--font-serif);
  text-align: center;
}

.hiw-card-divider {
  width: 28px; height: 2px;
  background: rgba(5, 54, 121, 0.18);
  border-radius: 2px;
  margin: 0 auto 10px;
}

.hiw-card-desc {
  font-size: var(--text-card-desc);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  text-align: center;
  flex: 1;
}

.hiw-connector-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
  pointer-events: none;
}

.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
}

.hiw-connector-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(5,54,121,0.12), rgba(5,54,121,0.04));
  margin: 0 10px;
}

.hiw-connector-arrow {
  color: rgba(5,54,121,0.25);
  font-size: 14px;
  line-height: 1;
}

.hiw-connector--empty { visibility: hidden; }


/* ============================================================
   BUILT FOR YOUR HOTEL  (.cvt-built2-)
   ============================================================ */

.cvt-built2-section {
  background: var(--bg-white);
  padding: var(--section-padding-v) var(--section-padding-h);
  margin: 0;
}

.cvt-built2-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.cvt-built2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.cvt-built2-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cvt-built2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--icon-bg-navy);
  border: 1px solid rgba(5, 54, 121, 0.15);
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill-full);
  width: fit-content;
}

.cvt-built2-badge-dot {
  width: 7px; height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22);
}

.cvt-built2-heading {
  font-family: var(--font-sans);
  font-size: var(--text-section-title);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
  margin: 0;
}

.cvt-built2-heading-accent {
  color: var(--color-navy);
  font-style: normal;
  display: block;
}

.cvt-built2-header-desc {
  font-family: var(--font-serif);
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--color-text-grey);
  line-height: 1.7;
  text-align: right;
  max-width: 280px;
  margin: 0;
  position: relative;
  top: -30px;
}

.cvt-built2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cvt-built2-card {
  background: var(--bg-white);
  border: 1px solid #e5eaf2;
  border-radius: var(--radius-card);
  padding: 22px 24px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.25s ease;
}

.cvt-built2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #d0d7e2;
}

.cvt-built2-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cvt-built2-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: var(--radius-card-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.cvt-built2-card:hover .cvt-built2-icon { transform: scale(1.06); }
.cvt-built2-icon svg { width: 22px; height: 22px; }

.cvt-built2-icon--grey  { background: #f1f3f8; color: #4b5875; border: 1px solid #e2e6f0; }
.cvt-built2-icon--green { background: #ecfdf5; color: var(--color-green-dark); border: 1px solid #bbf7d0; }

.cvt-built2-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  padding: 0;
  line-height: 1.35;
}

.cvt-built2-card-desc {
  margin-top: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-family: var(--font-serif);
  text-align: left;
  margin-left: 64px;
}


/* ============================================================
   SEAMLESS INTEGRATIONS  (.cvt-int-)
   ============================================================ */

.cvt-int-section {
  background: var(--bg-page-bluish);
  padding: var(--section-padding-v) var(--section-padding-h);
  margin: 0;
}

.cvt-int-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cvt-int-left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cvt-int-quote-mark {
  position: absolute;
  top: -20px; left: -16px;
  font-size: 100px;
  line-height: 1;
  color: var(--icon-bg-navy);
  font-family: var(--font-serif);
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}

.cvt-int-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--icon-bg-navy);
  border: 1px solid rgba(5, 54, 121, 0.15);
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill-full);
  width: fit-content;
}

.cvt-int-badge-dot {
  width: 7px; height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22);
}

.cvt-int-heading {
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
  margin: 0;
}

.cvt-int-heading-accent { color: var(--color-navy); }

.cvt-int-desc {
  font-family: var(--font-serif);
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--color-text-grey2);
  line-height: 1.75;
  margin: 0;
  padding: 0;
}

.cvt-int-author {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-white);
  border: 1px solid #e4e8f0;
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 4px;
}

.cvt-int-author-avatar {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: 50%;
  background: var(--bg-page-blue);
  border: 2px solid #dbe3f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cvt-int-author-avatar img { width: 36px; height: 36px; object-fit: contain; }

.cvt-int-author-text { display: flex; flex-direction: column; gap: 3px; }

.cvt-int-author-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.cvt-int-author-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.5;
}

.cvt-int-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.cvt-int-card {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-card);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.cvt-int-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-hover);
}

.cvt-int-card::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, var(--icon-bg-blue), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cvt-int-card:hover::before { opacity: 1; }

.cvt-int-card-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.cvt-int-card:hover .cvt-int-card-icon { transform: scale(1.06); }
.cvt-int-card-icon svg { width: 20px; height: 20px; }

.cvt-int-icon--blue  { background: var(--icon-bg-blue);  color: var(--color-navy); border: 1px solid rgba(5, 54, 121, 0.14); }
.cvt-int-icon--grey  { background: #f1f3f8; color: #4b5875; border: 1px solid #e2e6f0; }
.cvt-int-icon--green { background: #ecfdf5; color: var(--color-green-dark); border: 1px solid #bbf7d0; }

.cvt-int-card-body h4 {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 5px 0;
  padding: 0;
  line-height: 1.35;
  position: relative;
  top: -50px;
  left: 55px;
}

.cvt-int-card-body p {
  font-family: var(--font-serif);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--color-text-grey);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  margin-left: 70px;
  margin-top: -40px;
}


/* ============================================================
   SEAMLESS HOTEL MANAGEMENT  (.smhf-)
   ============================================================ */

.smhf { background: navy; padding: 56px 48px; }

.smhf-outer {
  background: var(--bg-white);
  border: 1px solid #dbe6fe;
  border-radius: 24px;
  padding: 48px 52px;
}

.smhf-top { display: flex; align-items: flex-start; gap: 48px; margin-bottom: 40px; }
.smhf-tl  { flex: 0 0 42%; max-width: 42%; }

.smhf-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--icon-bg-navy);
  border: 1px solid rgba(5,54,121,.18);
  color: var(--color-navy);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill-full);
  margin-bottom: 16px;
}

.smhf-dot {
  width: 7px; height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37,211,102,.22);
  animation: fp 2s infinite;
}

@keyframes fp {
  0%,100% { box-shadow: 0 0 0 3px rgba(37,211,102,.22); }
  50%      { box-shadow: 0 0 0 6px rgba(37,211,102,.07); }
}

.smhf-h {
  font-size: var(--text-section-title);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.smhf-h span { color: var(--color-navy); font-style: normal; display: block; }
.smhf-tr     { flex: 1; padding-top: 4px; }

.smhf-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
  text-align: justify;
}

.smhf-sep { height: 1px; background: var(--border-lighter); margin-bottom: 28px; }

.smhf-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.smhf-card {
  border: 1px solid var(--border-lighter);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.smhf-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(5,54,121,.08);
  border-color: rgba(5,54,121,.2);
}

.smhf-ch {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--border-lighter);
}

.smhf-num {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--bg-white);
}

.smhf-n1 { background: var(--color-navy); }
.smhf-n2 { background: #0f6e56; }
.smhf-ctitle { font-size: 14px; font-weight: 800; color: var(--color-text-dark); flex: 1; }

.smhf-badge {
  font-size: 9px; font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-pill-full);
}

.smhf-b1 { background: #dbe6fe; color: #0c447c; }
.smhf-b2 { background: #e1f5ee; color: #085041; }

.smhf-rows { display: flex; flex-direction: column; }

.smhf-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f4fb;
}

.smhf-row:last-child { border-bottom: none; }

.smhf-ico {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.smhf-ib { background: #dbe6fe; }
.smhf-ig { background: #e1f5ee; }

.smhf-rt  { display: flex; flex-direction: column; gap: 2px; }

.smhf-rk {
  font-size: 11px; font-weight: 700;
  color: var(--color-navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.smhf-rkg { color: #0f6e56; }
.smhf-rv  { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.55; }


/* ============================================================
   CTA / PARTNER SECTION  (.pt-  .partnerThird)
   ============================================================ */

.pt-wrapper {
  width: 100%;
  max-width: 100%;
  margin: var(--section-padding-v) 0;
  padding: 0 var(--section-padding-h);
  box-sizing: border-box;
}

.partnerThird {
  position: relative;
  overflow: hidden;
  background: var(--bg-cta);
  border-radius: 20px;
  padding: 72px 48px;
  margin: 0;
  font-family: var(--font-sora);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  box-sizing: border-box;
}

.partnerThird .pt-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.partnerThird .pt-blob--1 {
  width: 400px; height: 400px;
  background: rgba(6, 14, 28, 0.85);
  top: -140px; left: -120px;
  animation: ptFloat 9s ease-in-out infinite alternate;
}

.partnerThird .pt-blob--2 {
  width: 280px; height: 280px;
  background: rgba(34, 197, 94, 0.10);
  bottom: -90px; right: 50px;
  animation: ptFloat 12s ease-in-out infinite alternate-reverse;
}

.partnerThird .pt-blob--3 {
  width: 220px; height: 220px;
  background: rgba(17, 43, 85, 0.65);
  top: 30px; right: -60px;
  animation: ptFloat 7s ease-in-out infinite alternate;
}

@keyframes ptFloat {
  from { transform: translateY(0px) scale(1); }
  to   { transform: translateY(24px) scale(1.05); }
}

.partnerThird .pt-watermark {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 0;
}

.partnerThird .pt-watermark svg { width: 100%; height: 100%; }

.partnerThird .pt-inner {
  position: relative;
  z-index: 2;
  max-width: var(--cta-inner-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.partnerThird .pt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--bg-white);
  font-family: var(--font-sora);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 16px 6px 12px;
  border-radius: var(--radius-pill-full);
  margin-bottom: 28px;
  line-height: 1;
}

.partnerThird .pt-badge__dot {
  display: inline-block;
  width: 8px; height: 8px; min-width: 8px;
  background: var(--color-green-cta);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.30);
  animation: ptPulse 2.2s ease-in-out infinite;
}

@keyframes ptPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.30); }
  50%       { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

.partnerThird .pt-headline {
  font-family: var(--font-sora);
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--bg-white);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  text-align: center;
}

.partnerThird .pt-headline__accent {
  background: linear-gradient(90deg, #4ade80 0%, var(--color-green-cta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.partnerThird .pt-headline__time {
  color: var(--bg-white);
  -webkit-text-fill-color: var(--bg-white);
  background: none;
}

.partnerThird .pt-subline {
  font-family: var(--font-sora);
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  margin: 0 0 36px;
  letter-spacing: 0.01em;
  text-align: center;
}

.partnerThird .pt-features {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.partnerThird .pt-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--bg-white);
  font-family: var(--font-sora);
  font-size: 13.5px;
  font-weight: 400;
  padding: 10px 18px;
  border-radius: var(--radius-pill-full);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, border-color 0.3s ease;
  line-height: 1.4;
}

.partnerThird .pt-feature:hover {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.35);
}

.partnerThird .pt-feature__icon {
  width: 16px; height: 16px; min-width: 16px;
  color: var(--color-green-cta);
  flex-shrink: 0;
}

.partnerThird .pt-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.partnerThird .pt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-green-cta);
  color: #060e1c;
  font-family: var(--font-sora);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: var(--radius-pill-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(34,197,94,0.35);
  transition: var(--transition-btn);
  line-height: 1;
  outline: none;
}

.partnerThird .pt-btn:hover {
  transform: translateY(-2px);
  background: var(--color-green-cta-hover);
  box-shadow: 0 8px 40px rgba(34,197,94,0.50);
  color: #060e1c;
  text-decoration: none;
}

.partnerThird .pt-btn:active {
  transform: translateY(0px);
  box-shadow: 0 2px 14px rgba(34,197,94,0.25);
}

.partnerThird .pt-btn__arrow {
  display: flex;
  align-items: center;
  width: 20px; height: 20px;
  transition: transform 0.3s ease;
}

.partnerThird .pt-btn__arrow svg { width: 100%; height: 100%; }
.partnerThird .pt-btn:hover .pt-btn__arrow { transform: translateX(4px); }

.partnerThird .pt-cta-note {
  font-family: var(--font-sora);
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.02em;
}


/* ============================================================
   GLOBAL SECTION PADDING OVERRIDE
   (ensures all sections stay consistent)
   ============================================================ */

.cvh,
.cw2-section,
.feat-section,
.hiw-section,
.cvt-built2-section,
.cvt-int-section,
.smhf,
.partnerThird {
  padding-left: var(--section-padding-h);
  padding-right: var(--section-padding-h);
}

.cw2-container,
.feat-container,
.hiw-container,
.cvt-built2-inner,
.cvt-int-inner,
.cvh-inner {
  max-width: 100%;
  margin: 0;
}

.pt-wrapper {
  padding-left: var(--section-padding-h);
  padding-right: var(--section-padding-h);
}


/* ============================================================
   RESPONSIVE — TABLET  (max 980px)
   ============================================================ */

@media (max-width: 980px) {

  :root {
    --section-padding-h: var(--section-padding-h-tablet);
    --section-padding-v: var(--section-padding-v-tablet);
  }

  .cvh { min-height: auto; }

  .cvh-inner { flex-direction: column; }

  .cvh-left,
  .cvh-right {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }

  .cvh-right { min-height: 380px; }

  .cvt-int-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cw2-grid,
  .hiw-grid,
  .cvt-built2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hiw-connector-row { display: none; }

  .smhf-top { flex-direction: column; gap: 16px; }
  .smhf-tl  { flex: unset; max-width: 100%; }
}


/* ============================================================
   RESPONSIVE — TABLET SMALL  (max 768px)
   ============================================================ */

@media (max-width: 768px) {

  .cw2-title-row,
  .hiw-title-row,
  .feat-header {
    flex-direction: column;
    gap: 16px;
  }

  .cw2-subtitle,
  .hiw-subtitle,
  .feat-subtitle {
    text-align: left;
    max-width: 100%;
  }

  .cvt-built2-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
  }

  .cvt-built2-header-desc {
    text-align: left;
    max-width: 100%;
    top: 0;
  }

  .cvt-int-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cvt-int-heading { font-size: 26px; }

  .partnerThird {
    padding: 52px 28px;
    border-radius: 16px;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE  (max 600px)
   ============================================================ */

@media (max-width: 600px) {

  :root {
    --section-padding-h: var(--section-padding-h-mobile);
    --section-padding-v: var(--section-padding-v-mobile);
  }

  .cvh-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .cvh-btns { flex-direction: column; align-items: flex-start; }

  .cvh-btn-p,
  .cvh-btn-g { width: 100%; justify-content: center; }

  .cvh-stats { flex-wrap: wrap; gap: 16px; }

  .cvh-wa-card { width: 150px; height: 150px; border-radius: 24px; }
  .cvh-wa-svg  { width: 90px; height: 90px; }

  .cw2-grid,
  .hiw-grid,
  .feat-grid,
  .cvt-built2-grid,
  .smhf-cards {
    grid-template-columns: 1fr;
  }

  .smhf { padding: 20px; }
  .smhf-outer { padding: 24px; }
  .smhf-h { font-size: 22px; }

  .pt-wrapper { margin: 48px 0; }

  .partnerThird {
    padding: 44px 20px;
    border-radius: 14px;
  }

  .partnerThird .pt-watermark { display: none; }

  .partnerThird .pt-features {
    flex-direction: column;
    align-items: center;
  }

  .partnerThird .pt-btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE SMALL  (max 480px)
   ============================================================ */

@media (max-width: 480px) {
  .cvt-int-card {
    padding: 16px 14px;
    gap: 10px;
    border-radius: var(--radius-card-sm);
  }

  .cvt-int-right { grid-template-columns: 1fr; }
  .cvt-int-heading { font-size: 22px; }

  .cvt-int-quote-mark {
    font-size: 70px;
    top: -10px;
    left: -8px;
  }

  .pt-wrapper { margin: 28px 0; }

  .partnerThird { border-radius: 14px; }
}



.cvh,
.cw2-section,
.feat-section,
.hiw-section,
.cvt-built2-section,
.cvt-int-section,
.smhf,
.partnerThird {
  padding-top: 50px;
  padding-bottom: 25px;
}

/* Platform page — center single column hero */