/* ===================================================
   ALMAI — Global Stylesheet
   Version 1.0 — Marzo 2026
   =================================================== */

/* --- FONT --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
   --primary: #0B8A8A;
   --primary-dark: #076E6E;
   --primary-light: #E6F7F7;
   --accent: #14C4A0;
   --accent-light: #E8FBF5;
   --dark: #1A1A2E;
   --dark-soft: #2D2D44;
   --text: #374151;
   --text-light: #6B7280;
   --text-lighter: #9CA3AF;
   --bg: #FFFFFF;
   --bg-soft: #F9FAFB;
   --bg-card: #FFFFFF;
   --border: #E5E7EB;
   --border-light: #F3F4F6;
   --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
   --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
   --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
   --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.12);
   --radius: 12px;
   --radius-lg: 16px;
   --radius-xl: 24px;
   --nav-h: 72px;
}

/* --- RESET --- */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
}

body {
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
   -webkit-font-smoothing: antialiased;
}

img {
   max-width: 100%;
   display: block;
}

a {
   color: inherit;
}

ul {
   list-style: none;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5 {
   line-height: 1.2;
   font-weight: 800;
   color: var(--dark);
}

h1 {
   font-size: clamp(32px, 5vw, 56px);
   letter-spacing: -1.5px;
}

h2 {
   font-size: clamp(26px, 4vw, 40px);
   letter-spacing: -1px;
}

h3 {
   font-size: clamp(18px, 2.5vw, 22px);
}

h4 {
   font-size: 16px;
}

p {
   line-height: 1.7;
}

/* --- LAYOUT --- */
.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
}

.container-sm {
   max-width: 860px;
   margin: 0 auto;
   padding: 0 24px;
}

section {
   padding: 80px 0;
}

.section-inner {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
}

.text-center {
   text-align: center;
}

.mx-auto {
   margin-left: auto;
   margin-right: auto;
}

.grid-2 {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px;
}

.grid-3 {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
}

.grid-4 {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
}

/* --- BADGES --- */
.badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 5px 14px;
   border-radius: 20px;
   font-size: 12px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.badge-primary {
   background: var(--primary-light);
   color: var(--primary);
}

.badge-accent {
   background: var(--accent-light);
   color: var(--primary);
}

.badge-dark {
   background: rgba(20, 196, 160, 0.15);
   color: var(--accent);
}

/* --- SECTION HEADER --- */
.section-header {
   margin-bottom: 48px;
}

.section-header .badge {
   margin-bottom: 16px;
}

.section-header h2 {
   margin-bottom: 12px;
}

.section-header p {
   font-size: 17px;
   color: var(--text-light);
   max-width: 600px;
}

.section-header.center {
   text-align: center;
}

.section-header.center p {
   margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 10px 24px;
   border-radius: 10px;
   font-size: 14px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.2s;
   border: none;
   cursor: pointer;
   font-family: inherit;
   white-space: nowrap;
}

.btn-primary {
   background: var(--primary);
   color: #fff;
}

.btn-primary:hover {
   background: var(--primary-dark);
   transform: translateY(-1px);
   box-shadow: var(--shadow-lg);
}

.btn-outline {
   background: transparent;
   color: var(--primary);
   border: 1.5px solid var(--primary);
}

.btn-outline:hover {
   background: var(--primary-light);
}

.btn-white {
   background: #fff;
   color: var(--primary);
}

.btn-white:hover {
   background: var(--primary-light);
}

.btn-dark {
   background: var(--dark);
   color: #fff;
}

.btn-dark:hover {
   background: var(--dark-soft);
   transform: translateY(-1px);
   box-shadow: var(--shadow-lg);
}

.btn-lg {
   padding: 14px 32px;
   font-size: 16px;
   border-radius: 12px;
}

.btn-sm {
   padding: 8px 16px;
   font-size: 13px;
   border-radius: 8px;
}

.btn-block {
   width: 100%;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
   position: fixed;
   top: 0;
   width: 100%;
   background: rgba(255, 255, 255, 0.93);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border-bottom: 1px solid var(--border-light);
   z-index: 1000;
   transition: box-shadow 0.3s;
}

.nav.scrolled {
   box-shadow: var(--shadow);
}

.nav-inner {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: var(--nav-h);
}

.nav-logo {
   font-size: 24px;
   font-weight: 900;
   color: var(--primary);
   letter-spacing: -0.5px;
   text-decoration: none;
}

.nav-logo span {
   color: var(--dark);
}

.nav-links {
   display: flex;
   align-items: center;
   gap: 28px;
}

.nav-links a {
   text-decoration: none;
   color: var(--text);
   font-size: 14px;
   font-weight: 500;
   transition: color 0.2s;
   position: relative;
}

.nav-links a:hover,
.nav-links a.active {
   color: var(--primary);
}

.nav-links a.active::after {
   content: '';
   position: absolute;
   bottom: -4px;
   left: 0;
   right: 0;
   height: 2px;
   background: var(--primary);
   border-radius: 1px;
}

/* Nav Dropdown */
.nav-dropdown {
   position: relative;
}
.nav-dropdown-trigger {
   display: inline-flex;
   align-items: center;
   gap: 4px;
}
.nav-arrow {
   font-size: 10px;
   transition: transform 0.2s;
}
.nav-dropdown:hover .nav-arrow {
   transform: rotate(180deg);
}
.nav-dropdown-menu {
   display: none;
   position: absolute;
   top: calc(100% + 12px);
   left: -16px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: var(--radius);
   box-shadow: var(--shadow-xl);
   padding: 8px 0;
   min-width: 240px;
   z-index: 1001;
}
.nav-dropdown-menu::before {
   content: '';
   position: absolute;
   top: -12px;
   left: 0;
   right: 0;
   height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu {
   display: block;
   animation: dropIn 0.2s ease;
}
@keyframes dropIn {
   from { opacity: 0; transform: translateY(-8px); }
   to { opacity: 1; transform: translateY(0); }
}
.nav-dropdown-menu a {
   display: block;
   padding: 10px 20px;
   font-size: 14px;
   font-weight: 500;
   color: var(--text);
   text-decoration: none;
   transition: background 0.15s, color 0.15s;
   white-space: nowrap;
}
.nav-dropdown-menu a:hover {
   background: var(--primary-light);
   color: var(--primary);
}
.nav-dropdown-menu a::after {
   display: none !important;
}

.nav-lang {
   font-size: 12px;
   color: var(--text-light);
   border: 1px solid var(--border);
   padding: 4px 10px;
   border-radius: 6px;
   cursor: pointer;
   transition: all 0.2s;
}

.nav-lang:hover {
   border-color: var(--primary);
   color: var(--primary);
}

.nav-right {
   display: flex;
   align-items: center;
   gap: 16px;
}

/* Mobile nav */
.nav-hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
   padding: 4px;
}

.nav-hamburger span {
   width: 24px;
   height: 2px;
   background: var(--dark);
   border-radius: 2px;
   transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
   transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
   opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
   transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
   display: none;
   position: fixed;
   top: var(--nav-h);
   left: 0;
   right: 0;
   background: #fff;
   border-bottom: 1px solid var(--border);
   padding: 20px 24px 28px;
   flex-direction: column;
   gap: 4px;
   box-shadow: var(--shadow-lg);
   z-index: 999;
}

.nav-mobile.open {
   display: flex;
}

.nav-mobile a {
   display: block;
   padding: 12px 0;
   font-size: 15px;
   font-weight: 500;
   color: var(--text);
   text-decoration: none;
   border-bottom: 1px solid var(--border-light);
}

.nav-mobile a:hover {
   color: var(--primary);
}

.nav-mobile .btn {
   margin-top: 12px;
   width: 100%;
}

/* =============================================
   HERO — Homepage
   ============================================= */
.hero {
   padding: calc(var(--nav-h) + 60px) 0 80px;
   background: linear-gradient(135deg, #F0FDFA 0%, #F0F9FF 50%, #FDF4FF 100%);
   position: relative;
   overflow: hidden;
}

.hero::before {
   content: '';
   position: absolute;
   top: -200px;
   right: -200px;
   width: 700px;
   height: 700px;
   background: radial-gradient(circle, rgba(20, 196, 160, 0.09) 0%, transparent 70%);
   pointer-events: none;
}

.hero::after {
   content: '';
   position: absolute;
   bottom: -100px;
   left: -100px;
   width: 450px;
   height: 450px;
   background: radial-gradient(circle, rgba(11, 138, 138, 0.07) 0%, transparent 70%);
   pointer-events: none;
}

.hero-inner {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 64px;
   align-items: center;
   position: relative;
   z-index: 1;
}

.hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: var(--accent-light);
   color: var(--primary);
   padding: 6px 16px;
   border-radius: 20px;
   font-size: 13px;
   font-weight: 600;
   margin-bottom: 20px;
}

.hero-badge::before {
   content: '✦';
}

.hero h1 {
   margin-bottom: 20px;
}

.hero h1 em {
   font-style: normal;
   background: linear-gradient(135deg, var(--primary), var(--accent));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.hero p {
   font-size: 18px;
   color: var(--text-light);
   margin-bottom: 32px;
   max-width: 500px;
}

.hero-ctas {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-bottom: 44px;
}

.hero-stats {
   display: flex;
   gap: 36px;
   flex-wrap: wrap;
}

.hero-stat .num {
   font-size: 28px;
   font-weight: 800;
   color: var(--primary);
   line-height: 1;
}

.hero-stat .lbl {
   font-size: 13px;
   color: var(--text-lighter);
   margin-top: 4px;
}

/* Hero page (verticali, pagine interne) */
.page-hero {
   padding: calc(var(--nav-h) + 60px) 0 64px;
   background: linear-gradient(135deg, #F0FDFA 0%, #F0F9FF 60%, #FDF4FF 100%);
   position: relative;
   overflow: hidden;
}

.page-hero::before {
   content: '';
   position: absolute;
   top: -150px;
   right: -150px;
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(20, 196, 160, 0.09) 0%, transparent 70%);
   pointer-events: none;
}

.page-hero-inner {
   position: relative;
   z-index: 1;
   max-width: 780px;
}

.page-hero .badge {
   margin-bottom: 20px;
}

.page-hero h1 {
   margin-bottom: 18px;
}

.page-hero p {
   font-size: 18px;
   color: var(--text-light);
   margin-bottom: 32px;
   max-width: 620px;
}

.page-hero-ctas {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
}

/* =============================================
   CHAT MOCKUP
   ============================================= */
.chat-mockup {
   background: #fff;
   border-radius: var(--radius-xl);
   box-shadow: var(--shadow-xl);
   overflow: hidden;
   max-width: 420px;
   margin-left: auto;
}

.chat-header {
   background: var(--primary);
   color: #fff;
   padding: 16px 20px;
   display: flex;
   align-items: center;
   gap: 12px;
}

.chat-avatar {
   width: 38px;
   height: 38px;
   background: rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   flex-shrink: 0;
}

.chat-header-info h4 {
   font-size: 14px;
   font-weight: 600;
}

.chat-header-info span {
   font-size: 12px;
   opacity: 0.85;
}

.chat-status-dot {
   display: inline-block;
   width: 8px;
   height: 8px;
   background: #4ADE80;
   border-radius: 50%;
   margin-right: 4px;
   animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

   0%,
   100% {
      opacity: 1;
   }

   50% {
      opacity: 0.5;
   }
}

.chat-body {
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   min-height: 300px;
   background: #F9FAFB;
}

.msg {
   max-width: 82%;
   padding: 10px 14px;
   border-radius: 14px;
   font-size: 13px;
   line-height: 1.5;
}

.msg-bot {
   background: #fff;
   border: 1px solid var(--border);
   align-self: flex-start;
   border-bottom-left-radius: 4px;
}

.msg-user {
   background: var(--primary);
   color: #fff;
   align-self: flex-end;
   border-bottom-right-radius: 4px;
}

.msg-options {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
   margin-top: 8px;
}

.msg-opt {
   background: var(--primary-light);
   color: var(--primary);
   padding: 5px 12px;
   border-radius: 16px;
   font-size: 12px;
   font-weight: 500;
   cursor: pointer;
   transition: background 0.2s;
}

.msg-opt:hover {
   background: var(--primary);
   color: #fff;
}

.chat-input-bar {
   border-top: 1px solid var(--border);
   padding: 12px 16px;
   display: flex;
   gap: 8px;
   background: #fff;
}

.chat-input-bar input {
   flex: 1;
   border: 1px solid var(--border);
   border-radius: 8px;
   padding: 8px 12px;
   font-size: 13px;
   outline: none;
   font-family: inherit;
}

.chat-input-bar input:focus {
   border-color: var(--primary);
}

.chat-input-bar button {
   background: var(--primary);
   color: #fff;
   border: none;
   border-radius: 8px;
   padding: 8px 14px;
   cursor: pointer;
   font-size: 13px;
   transition: background 0.2s;
}

.chat-input-bar button:hover {
   background: var(--primary-dark);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
   background: var(--bg-soft);
   border-top: 1px solid var(--border-light);
   border-bottom: 1px solid var(--border-light);
   padding: 44px 24px;
}

.trust-inner {
   max-width: 1000px;
   margin: 0 auto;
   display: flex;
   justify-content: center;
   gap: 64px;
   align-items: center;
   flex-wrap: wrap;
}

.trust-stat {
   text-align: center;
}

.trust-stat .num {
   font-size: 34px;
   font-weight: 800;
   color: var(--primary);
   display: block;
   line-height: 1;
}

.trust-stat .lbl {
   font-size: 13px;
   color: var(--text-lighter);
   margin-top: 6px;
   display: block;
}

/* =============================================
   VERTICAL CARDS (Settori)
   ============================================= */
.verticals-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
}

.vertical-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   padding: 28px;
   transition: all 0.3s;
   cursor: pointer;
   position: relative;
   overflow: hidden;
   text-decoration: none;
   display: block;
   color: inherit;
}

.vertical-card:hover {
   border-color: var(--primary);
   box-shadow: var(--shadow-lg);
   transform: translateY(-4px);
}

.vertical-card::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, var(--primary), var(--accent));
   opacity: 0;
   transition: opacity 0.3s;
}

.vertical-card:hover::after {
   opacity: 1;
}

.v-icon {
   width: 52px;
   height: 52px;
   background: var(--primary-light);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
   margin-bottom: 18px;
}

.vertical-card h3 {
   font-size: 17px;
   font-weight: 700;
   margin-bottom: 8px;
}

.vertical-card p {
   font-size: 14px;
   color: var(--text-light);
   line-height: 1.6;
   margin-bottom: 18px;
}

.v-link {
   font-size: 13px;
   font-weight: 600;
   color: var(--primary);
   display: inline-flex;
   align-items: center;
   gap: 4px;
   transition: gap 0.2s;
}

.vertical-card:hover .v-link {
   gap: 8px;
}

/* =============================================
   STEPS
   ============================================= */
.steps-section {
   background: var(--bg-soft);
}

.steps-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 40px;
   position: relative;
}

.steps-grid::before {
   content: '';
   position: absolute;
   top: 32px;
   left: 16%;
   right: 16%;
   height: 2px;
   background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.step {
   text-align: center;
   position: relative;
   z-index: 1;
}

.step-num {
   width: 64px;
   height: 64px;
   background: linear-gradient(135deg, var(--primary), var(--accent));
   color: #fff;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
   font-weight: 800;
   margin: 0 auto 20px;
   box-shadow: 0 6px 16px rgba(11, 138, 138, 0.3);
}

.step h3 {
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 8px;
}

.step p {
   font-size: 14px;
   color: var(--text-light);
   max-width: 260px;
   margin: 0 auto;
}

/* =============================================
   FEATURE CARDS
   ============================================= */
.features-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
}

.feature-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 24px;
   transition: all 0.25s;
}

.feature-card:hover {
   box-shadow: var(--shadow-lg);
   border-color: var(--primary-light);
   transform: translateY(-2px);
}

.f-icon {
   width: 44px;
   height: 44px;
   background: var(--accent-light);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   margin-bottom: 16px;
}

.feature-card h4 {
   font-size: 15px;
   font-weight: 700;
   margin-bottom: 8px;
}

.feature-card p {
   font-size: 13px;
   color: var(--text-light);
   line-height: 1.65;
}

/* =============================================
   PAIN POINTS
   ============================================= */
.pain-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
}

.pain-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 24px;
   display: flex;
   gap: 16px;
}

.pain-icon {
   width: 44px;
   height: 44px;
   background: #FEF2F2;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   flex-shrink: 0;
}

.pain-card h4 {
   font-size: 15px;
   font-weight: 700;
   margin-bottom: 6px;
   color: var(--dark);
}

.pain-card p {
   font-size: 13px;
   color: var(--text-light);
   line-height: 1.6;
}

/* Solution cards */
.solution-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
}

.solution-card {
   background: var(--accent-light);
   border: 1px solid rgba(20, 196, 160, 0.2);
   border-radius: var(--radius);
   padding: 24px;
   display: flex;
   gap: 16px;
}

.solution-icon {
   width: 44px;
   height: 44px;
   background: var(--primary);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   flex-shrink: 0;
}

.solution-card h4 {
   font-size: 15px;
   font-weight: 700;
   margin-bottom: 6px;
   color: var(--dark);
}

.solution-card p {
   font-size: 13px;
   color: var(--text-light);
   line-height: 1.6;
}

/* =============================================
   KPI CARDS
   ============================================= */
.kpi-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
}

.kpi-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   padding: 28px 20px;
   text-align: center;
}

.kpi-card .kpi-num {
   font-size: 36px;
   font-weight: 900;
   color: var(--primary);
   line-height: 1;
   margin-bottom: 8px;
}

.kpi-card .kpi-lbl {
   font-size: 14px;
   color: var(--text-light);
}

/* =============================================
   CONVERSATION DEMO
   ============================================= */
.conversation-demo {
   background: var(--bg-soft);
   border-radius: var(--radius-xl);
   padding: 32px;
   max-width: 660px;
}

.conv-demo-header {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 20px;
   padding-bottom: 16px;
   border-bottom: 1px solid var(--border);
}

.conv-demo-avatar {
   width: 40px;
   height: 40px;
   background: var(--primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
}

.conv-demo-name {
   font-weight: 600;
   font-size: 14px;
}

.conv-demo-status {
   font-size: 12px;
   color: var(--text-lighter);
}

.conv-messages {
   display: flex;
   flex-direction: column;
   gap: 12px;
}

/* =============================================
   INTEGRATIONS
   ============================================= */
.integrations-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
}

.integration-pill {
   display: flex;
   align-items: center;
   gap: 8px;
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: 40px;
   padding: 10px 18px;
   font-size: 13px;
   font-weight: 600;
   color: var(--text);
   transition: all 0.2s;
}

.integration-pill:hover {
   border-color: var(--primary);
   color: var(--primary);
   transform: translateY(-1px);
   box-shadow: var(--shadow-sm);
}

.integration-pill .int-icon {
   font-size: 18px;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-toggle {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 12px;
   margin-bottom: 48px;
}

.toggle-label {
   font-size: 14px;
   font-weight: 500;
   color: var(--text-light);
}

.toggle-label.active {
   color: var(--dark);
   font-weight: 600;
}

.toggle-switch {
   width: 48px;
   height: 26px;
   background: var(--primary);
   border-radius: 13px;
   cursor: pointer;
   position: relative;
   transition: background 0.3s;
}

.toggle-switch::after {
   content: '';
   position: absolute;
   top: 3px;
   left: 3px;
   width: 20px;
   height: 20px;
   background: #fff;
   border-radius: 50%;
   transition: transform 0.3s;
}

.toggle-switch.monthly::after {
   transform: translateX(22px);
}

.save-badge {
   background: var(--accent-light);
   color: var(--accent);
   font-size: 11px;
   font-weight: 700;
   padding: 2px 8px;
   border-radius: 10px;
}

.pricing-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   align-items: start;
}

.price-card {
   background: var(--bg-card);
   border: 1.5px solid var(--border);
   border-radius: var(--radius-xl);
   padding: 32px;
   position: relative;
   transition: all 0.3s;
}

.price-card:hover {
   box-shadow: var(--shadow-lg);
}

.price-card.featured {
   border-color: var(--primary);
   box-shadow: var(--shadow-xl);
   transform: scale(1.03);
}

.price-badge {
   position: absolute;
   top: -14px;
   left: 50%;
   transform: translateX(-50%);
   background: linear-gradient(135deg, var(--primary), var(--accent));
   color: #fff;
   padding: 4px 18px;
   border-radius: 20px;
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   white-space: nowrap;
}

.price-name {
   font-size: 20px;
   font-weight: 800;
   color: var(--dark);
   margin-bottom: 4px;
}

.price-desc {
   font-size: 13px;
   color: var(--text-lighter);
   margin-bottom: 24px;
}

.price-amount {
   font-size: 40px;
   font-weight: 900;
   color: var(--dark);
   line-height: 1;
   margin-bottom: 4px;
}

.price-amount span {
   font-size: 15px;
   font-weight: 400;
   color: var(--text-lighter);
}

.price-divider {
   width: 100%;
   height: 1px;
   background: var(--border);
   margin: 20px 0;
}

.price-setup-label {
   font-size: 11px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   color: var(--text-lighter);
   margin-bottom: 6px;
}

.price-setup-amount {
   font-size: 22px;
   font-weight: 700;
   color: var(--dark);
}

.price-setup-amount span {
   font-size: 13px;
   font-weight: 400;
   color: var(--text-lighter);
}

.price-renewal {
   background: var(--bg-soft);
   padding: 10px 14px;
   border-radius: 8px;
   margin-bottom: 16px;
   text-align: center;
}

.price-renewal .renewal-label {
   font-size: 11px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   color: var(--text-lighter);
   display: block;
}

.price-renewal .renewal-amount {
   font-size: 18px;
   font-weight: 700;
   color: var(--primary);
   display: block;
}

.price-conversations {
   background: var(--primary-light);
   color: var(--primary);
   padding: 12px 14px;
   border-radius: 10px;
   font-size: 13px;
   font-weight: 600;
   text-align: center;
   margin-bottom: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 6px;
}

.price-extra-link {
   display: block;
   text-align: center;
   font-size: 12px;
   color: var(--primary);
   font-weight: 600;
   cursor: pointer;
   margin-bottom: 18px;
   text-decoration: underline;
   text-decoration-style: dotted;
   text-underline-offset: 2px;
   background: none;
   border: none;
   font-family: inherit;
   width: 100%;
}

.price-extra-link:hover {
   color: var(--primary-dark);
}

.price-features {
   margin-bottom: 24px;
}

.price-features li {
   font-size: 14px;
   color: var(--text);
   padding: 7px 0;
   display: flex;
   align-items: flex-start;
   gap: 10px;
   border-bottom: 1px solid var(--border-light);
}

.price-features li:last-child {
   border-bottom: none;
}

.price-features li::before {
   content: '✓';
   color: var(--accent);
   font-weight: 700;
   font-size: 14px;
   flex-shrink: 0;
   margin-top: 1px;
}

.price-cta {
   width: 100%;
}

/* Pricing table */
.pricing-table {
   width: 100%;
   border-collapse: collapse;
   margin-top: 48px;
}

.pricing-table th {
   background: var(--bg-soft);
   font-size: 12px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   color: var(--text-lighter);
   padding: 12px 16px;
   text-align: left;
   border-bottom: 2px solid var(--border);
}

.pricing-table th:first-child {
   border-radius: 8px 0 0 0;
}

.pricing-table th:last-child {
   border-radius: 0 8px 0 0;
}

.pricing-table td {
   padding: 14px 16px;
   font-size: 14px;
   color: var(--text);
   border-bottom: 1px solid var(--border-light);
}

.pricing-table tr:last-child td {
   border-bottom: none;
}

.pricing-table td .check {
   color: var(--accent);
   font-weight: 700;
}

.pricing-table td .dash {
   color: var(--text-lighter);
}

.pricing-table tr:hover td {
   background: var(--bg-soft);
}

.pricing-table .feat-name {
   font-weight: 600;
   color: var(--dark);
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.5);
   backdrop-filter: blur(4px);
   z-index: 2000;
   align-items: center;
   justify-content: center;
   padding: 20px;
}

.modal-overlay.active {
   display: flex;
}

.modal {
   background: #fff;
   border-radius: var(--radius-xl);
   max-width: 600px;
   width: 100%;
   max-height: 85vh;
   overflow-y: auto;
   box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
   animation: modalIn 0.3s ease;
}

@keyframes modalIn {
   from {
      opacity: 0;
      transform: scale(0.95) translateY(12px);
   }

   to {
      opacity: 1;
      transform: scale(1) translateY(0);
   }
}

.modal-header {
   padding: 24px 28px 0;
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
}

.modal-header h3 {
   font-size: 20px;
   font-weight: 800;
}

.modal-close {
   width: 32px;
   height: 32px;
   border-radius: 8px;
   border: 1px solid var(--border);
   background: none;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   color: var(--text-light);
   transition: all 0.2s;
   flex-shrink: 0;
}

.modal-close:hover {
   background: var(--bg-soft);
   color: var(--dark);
}

.modal-body {
   padding: 20px 28px 28px;
}

.modal-subtitle {
   font-size: 14px;
   color: var(--text-light);
   margin-bottom: 20px;
   line-height: 1.6;
}

.extra-table {
   width: 100%;
   border-collapse: collapse;
   margin-bottom: 20px;
}

.extra-table th {
   background: var(--bg-soft);
   font-size: 12px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   color: var(--text-lighter);
   padding: 10px 14px;
   text-align: left;
   border-bottom: 1px solid var(--border);
}

.extra-table td {
   padding: 12px 14px;
   font-size: 14px;
   color: var(--text);
   border-bottom: 1px solid var(--border-light);
}

.extra-table tr:last-child td {
   border-bottom: none;
}

.pack-name {
   font-weight: 600;
   color: var(--dark);
}

.pack-price {
   font-weight: 700;
   color: var(--primary);
}

.pack-saving {
   font-size: 11px;
   color: var(--accent);
   font-weight: 700;
   background: var(--accent-light);
   padding: 2px 8px;
   border-radius: 10px;
}

.modal-note {
   font-size: 12px;
   color: var(--text-light);
   line-height: 1.7;
   padding: 14px 16px;
   background: var(--bg-soft);
   border-radius: 10px;
}

.modal-note strong {
   color: var(--dark);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
   background: var(--dark);
}

.testimonials-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
}

.testimonial-card {
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: var(--radius-lg);
   padding: 28px;
   transition: background 0.3s;
}

.testimonial-card:hover {
   background: rgba(255, 255, 255, 0.09);
}

.t-stars {
   color: #FBBF24;
   font-size: 14px;
   letter-spacing: 2px;
   margin-bottom: 16px;
}

.t-quote {
   font-size: 14px;
   color: rgba(255, 255, 255, 0.8);
   line-height: 1.75;
   margin-bottom: 20px;
   font-style: italic;
}

.t-author {
   display: flex;
   align-items: center;
   gap: 12px;
}

.t-avatar {
   width: 42px;
   height: 42px;
   background: linear-gradient(135deg, var(--primary), var(--accent));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 15px;
   color: #fff;
   flex-shrink: 0;
}

.t-info h5 {
   font-size: 14px;
   font-weight: 600;
   color: #fff;
}

.t-info span {
   font-size: 12px;
   color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
   background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
   color: #fff;
   text-align: center;
   padding: 80px 24px;
}

.cta-banner h2 {
   font-size: clamp(26px, 4vw, 38px);
   margin-bottom: 12px;
   color: #fff;
}

.cta-banner p {
   font-size: 17px;
   opacity: 0.92;
   margin-bottom: 32px;
}

.cta-form {
   display: flex;
   gap: 8px;
   max-width: 480px;
   margin: 0 auto 12px;
}

.cta-form input {
   flex: 1;
   padding: 14px 18px;
   border: none;
   border-radius: 10px;
   font-size: 15px;
   outline: none;
   font-family: inherit;
}

.cta-form .btn {
   flex-shrink: 0;
}

.cta-note {
   font-size: 13px;
   opacity: 0.75;
   margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
   background: var(--dark);
   color: rgba(255, 255, 255, 0.65);
   padding: 64px 0 0;
}

.footer-grid {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 40px;
   padding-bottom: 48px;
}

.footer-brand .nav-logo {
   display: inline-block;
   margin-bottom: 14px;
   color: var(--accent);
}

.footer-brand .nav-logo span {
   color: #fff;
}

.footer-brand p {
   font-size: 13px;
   line-height: 1.75;
   max-width: 280px;
}

.footer-contact {
   margin-top: 16px;
   font-size: 13px;
   line-height: 2;
}

.footer-social {
   display: flex;
   gap: 10px;
   margin-top: 16px;
}

.footer-social a {
   width: 34px;
   height: 34px;
   background: rgba(255, 255, 255, 0.08);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   transition: background 0.2s;
   text-decoration: none;
}

.footer-social a:hover {
   background: var(--primary);
}

.footer-col h5 {
   color: #fff;
   font-size: 12px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   margin-bottom: 18px;
}

.footer-col a {
   display: block;
   color: rgba(255, 255, 255, 0.55);
   text-decoration: none;
   font-size: 13px;
   padding: 4px 0;
   transition: color 0.2s;
}

.footer-col a:hover {
   color: var(--accent);
}

.footer-bottom {
   max-width: 1200px;
   margin: 0 auto;
   padding: 20px 24px;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 12px;
   color: rgba(255, 255, 255, 0.35);
   flex-wrap: wrap;
   gap: 8px;
}

.footer-bottom a {
   color: inherit;
   text-decoration: none;
   transition: color 0.2s;
}

.footer-bottom a:hover {
   color: var(--accent);
}

.footer-legal {
   display: flex;
   gap: 16px;
}

/* =============================================
   CHATBOT WIDGET
   ============================================= */
.chatbot-widget {
   position: fixed;
   bottom: 24px;
   right: 24px;
   z-index: 500;
}

.chatbot-trigger {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, var(--primary), var(--accent));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 6px 20px rgba(11, 138, 138, 0.4);
   animation: pulse-float 3s ease-in-out infinite;
   transition: transform 0.2s;
   position: relative;
}

.chatbot-trigger:hover {
   transform: scale(1.08);
}

.chatbot-trigger-icon {
   font-size: 26px;
}

.chatbot-trigger .badge-notify {
   position: absolute;
   top: -2px;
   right: -2px;
   width: 18px;
   height: 18px;
   background: #EF4444;
   border-radius: 50%;
   border: 2px solid #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 10px;
   color: #fff;
   font-weight: 700;
}

@keyframes pulse-float {

   0%,
   100% {
      transform: translateY(0);
      box-shadow: 0 6px 20px rgba(11, 138, 138, 0.4);
   }

   50% {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(11, 138, 138, 0.5);
   }
}

.chatbot-panel {
   display: none;
   position: absolute;
   bottom: 72px;
   right: 0;
   width: 340px;
   background: #fff;
   border-radius: var(--radius-xl);
   box-shadow: var(--shadow-xl);
   overflow: hidden;
   animation: slideUp 0.3s ease;
}

.chatbot-panel.open {
   display: block;
}

@keyframes slideUp {
   from {
      opacity: 0;
      transform: translateY(12px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.widget-header {
   background: var(--primary);
   color: #fff;
   padding: 16px 18px;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.widget-header-left {
   display: flex;
   align-items: center;
   gap: 10px;
}

.widget-avatar {
   width: 34px;
   height: 34px;
   background: rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
}

.widget-name {
   font-size: 13px;
   font-weight: 700;
}

.widget-status {
   font-size: 11px;
   opacity: 0.85;
}

.widget-close {
   background: rgba(255, 255, 255, 0.2);
   border: none;
   color: #fff;
   width: 26px;
   height: 26px;
   border-radius: 6px;
   cursor: pointer;
   font-size: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: background 0.2s;
}

.widget-close:hover {
   background: rgba(255, 255, 255, 0.3);
}

.widget-body {
   padding: 16px;
   background: #F9FAFB;
   min-height: 220px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.widget-msg {
   font-size: 13px;
   line-height: 1.5;
   padding: 9px 13px;
   border-radius: 12px;
   max-width: 90%;
}

.widget-msg.bot {
   background: #fff;
   border: 1px solid var(--border);
   align-self: flex-start;
   border-bottom-left-radius: 3px;
}

.widget-input {
   border-top: 1px solid var(--border);
   padding: 10px 14px;
   display: flex;
   gap: 8px;
   background: #fff;
}

.widget-input input {
   flex: 1;
   border: 1px solid var(--border);
   border-radius: 8px;
   padding: 8px 10px;
   font-size: 13px;
   outline: none;
   font-family: inherit;
}

.widget-input input:focus {
   border-color: var(--primary);
}

.widget-input button {
   background: var(--primary);
   color: #fff;
   border: none;
   border-radius: 8px;
   padding: 8px 12px;
   cursor: pointer;
   font-size: 13px;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: var(--dark);
   color: rgba(255, 255, 255, 0.85);
   padding: 16px 24px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   z-index: 4000;
   flex-wrap: wrap;
   animation: slideUpCookie 0.4s ease;
}

@keyframes slideUpCookie {
   from {
      transform: translateY(100%);
   }

   to {
      transform: translateY(0);
   }
}

.cookie-banner.hidden {
   display: none;
}

.cookie-text {
   font-size: 13px;
   line-height: 1.7;
   flex: 1;
   min-width: 200px;
}

.cookie-text a {
   color: var(--accent);
}

.cookie-actions {
   display: flex;
   gap: 8px;
   flex-shrink: 0;
   flex-wrap: wrap;
}

.cookie-actions .btn-sm {
   font-size: 13px;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius-xl);
   padding: 40px;
}

.form-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.form-group {
   display: flex;
   flex-direction: column;
   gap: 6px;
}

.form-group.full {
   grid-column: 1 / -1;
}

.form-group label {
   font-size: 13px;
   font-weight: 600;
   color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
   border: 1.5px solid var(--border);
   border-radius: 10px;
   padding: 12px 16px;
   font-size: 14px;
   font-family: inherit;
   outline: none;
   transition: border-color 0.2s, box-shadow 0.2s;
   background: var(--bg);
   color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   border-color: var(--primary);
   box-shadow: 0 0 0 3px rgba(11, 138, 138, 0.1);
}

.form-group textarea {
   resize: vertical;
   min-height: 120px;
}

.form-group select {
   appearance: none;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 14px center;
   padding-right: 36px;
}

.form-check {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   font-size: 13px;
   color: var(--text-light);
   cursor: pointer;
}

.form-check input[type="checkbox"] {
   width: 16px;
   height: 16px;
   margin-top: 2px;
   accent-color: var(--primary);
   flex-shrink: 0;
}

.form-check a {
   color: var(--primary);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.team-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 28px;
}

.team-card {
   text-align: center;
}

.team-avatar {
   width: 96px;
   height: 96px;
   border-radius: 50%;
   margin: 0 auto 16px;
   background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 36px;
   border: 3px solid var(--border);
   overflow: hidden;
}

.team-card h3 {
   font-size: 16px;
   font-weight: 700;
   margin-bottom: 4px;
}

.team-card .role {
   font-size: 13px;
   color: var(--primary);
   font-weight: 600;
   margin-bottom: 10px;
   display: block;
}

.team-card p {
   font-size: 13px;
   color: var(--text-light);
   line-height: 1.65;
}

.values-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px;
}

.value-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   padding: 28px;
   display: flex;
   gap: 16px;
}

.value-icon {
   width: 52px;
   height: 52px;
   background: var(--primary-light);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
   flex-shrink: 0;
}

.value-card h3 {
   font-size: 16px;
   font-weight: 700;
   margin-bottom: 8px;
}

.value-card p {
   font-size: 14px;
   color: var(--text-light);
   line-height: 1.6;
}

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 28px;
}

.blog-card {
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   overflow: hidden;
   transition: all 0.3s;
   text-decoration: none;
   color: inherit;
   display: block;
}

.blog-card:hover {
   box-shadow: var(--shadow-lg);
   transform: translateY(-4px);
}

.blog-card-img {
   height: 180px;
   background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 48px;
}

.blog-card-body {
   padding: 24px;
}

.blog-meta {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 12px;
   font-size: 12px;
   color: var(--text-lighter);
}

.blog-cat {
   background: var(--primary-light);
   color: var(--primary);
   padding: 2px 10px;
   border-radius: 10px;
   font-weight: 600;
   text-decoration: none;
}

.blog-card h3 {
   font-size: 16px;
   font-weight: 700;
   margin-bottom: 8px;
   line-height: 1.4;
}

.blog-card p {
   font-size: 13px;
   color: var(--text-light);
   line-height: 1.65;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.faq-item {
   border: 1px solid var(--border);
   border-radius: var(--radius);
   overflow: hidden;
}

.faq-question {
   width: 100%;
   background: none;
   border: none;
   padding: 18px 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   font-size: 15px;
   font-weight: 600;
   color: var(--dark);
   text-align: left;
   font-family: inherit;
   transition: background 0.2s;
   gap: 12px;
}

.faq-question:hover {
   background: var(--bg-soft);
}

.faq-arrow {
   font-size: 12px;
   color: var(--text-lighter);
   transition: transform 0.3s;
   flex-shrink: 0;
}

.faq-item.open .faq-arrow {
   transform: rotate(180deg);
}

.faq-answer {
   display: none;
   padding: 0 20px 18px;
   font-size: 14px;
   color: var(--text-light);
   line-height: 1.7;
}

.faq-item.open .faq-answer {
   display: block;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 13px;
   color: var(--text-lighter);
   margin-bottom: 24px;
   flex-wrap: wrap;
}

.breadcrumb a {
   color: var(--text-lighter);
   text-decoration: none;
   transition: color 0.2s;
}

.breadcrumb a:hover {
   color: var(--primary);
}

.breadcrumb span {
   color: var(--text-lighter);
}

.breadcrumb .current {
   color: var(--text);
   font-weight: 500;
}

/* =============================================
   SECTION DIVIDER
   ============================================= */
.divider {
   height: 1px;
   background: var(--border);
   margin: 0;
}

.section-alt {
   background: var(--bg-soft);
}

/* =============================================
   ALERTS / INFO BOXES
   ============================================= */
.info-box {
   background: var(--primary-light);
   border-left: 4px solid var(--primary);
   border-radius: 0 var(--radius) var(--radius) 0;
   padding: 16px 20px;
   font-size: 14px;
   color: var(--dark);
   line-height: 1.6;
}

.info-box strong {
   color: var(--primary);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
   .grid-4 {
      grid-template-columns: repeat(2, 1fr);
   }

   .kpi-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
   }

   .features-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   section {
      padding: 56px 0;
   }

   h2 {
      font-size: 26px;
   }

   /* Nav */
   .nav-links {
      display: none;
   }

   .nav-hamburger {
      display: flex;
   }

   /* Hero */
   .hero-inner {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .chat-mockup {
      display: none;
   }

   .hero-stats {
      gap: 24px;
   }

   .hero p {
      font-size: 16px;
   }

   /* Grids */
   .verticals-grid {
      grid-template-columns: 1fr;
   }

   .grid-2,
   .grid-3,
   .grid-4 {
      grid-template-columns: 1fr;
   }

   .features-grid {
      grid-template-columns: 1fr;
   }

   .steps-grid {
      grid-template-columns: 1fr;
   }

   .steps-grid::before {
      display: none;
   }

   .pricing-grid {
      grid-template-columns: 1fr;
   }

   .price-card.featured {
      transform: none;
   }

   .testimonials-grid {
      grid-template-columns: 1fr;
   }

   .solution-grid,
   .pain-grid {
      grid-template-columns: 1fr;
   }

   .kpi-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .team-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .values-grid {
      grid-template-columns: 1fr;
   }

   .blog-grid {
      grid-template-columns: 1fr;
   }

   .form-grid {
      grid-template-columns: 1fr;
   }

   .form-group.full {
      grid-column: 1;
   }

   /* Trust  */
   .trust-inner {
      gap: 28px;
   }

   /* CTA */
   .cta-form {
      flex-direction: column;
   }

   /* Footer */
   .footer-grid {
      grid-template-columns: 1fr;
      gap: 24px;
   }

   .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 8px;
   }

   .footer-legal {
      justify-content: center;
   }

   /* Widget */
   .chatbot-panel {
      width: 300px;
   }

   /* Cookie */
   .cookie-banner {
      padding: 16px;
   }

   .cookie-actions {
      width: 100%;
      justify-content: flex-end;
   }

   /* Contact */
   .contact-form {
      padding: 24px;
   }
}

@media (max-width: 480px) {
   h1 {
      font-size: 30px;
   }

   .hero-ctas {
      flex-direction: column;
   }

   .hero-ctas .btn {
      width: 100%;
      justify-content: center;
   }

   .page-hero-ctas {
      flex-direction: column;
   }

   .page-hero-ctas .btn {
      width: 100%;
      justify-content: center;
   }

   .kpi-grid {
      grid-template-columns: 1fr 1fr;
   }

   .team-grid {
      grid-template-columns: 1fr;
   }

   .trust-inner {
      flex-direction: column;
      gap: 20px;
   }

   .chatbot-widget {
      bottom: 16px;
      right: 16px;
   }

   .chatbot-panel {
      width: calc(100vw - 32px);
      right: -8px;
   }
}

/* =============================================
   UTILITY
   ============================================= */
.mt-8 {
   margin-top: 8px;
}

.mt-12 {
   margin-top: 12px;
}

.mt-16 {
   margin-top: 16px;
}

.mt-24 {
   margin-top: 24px;
}

.mt-32 {
   margin-top: 32px;
}

.mt-40 {
   margin-top: 40px;
}

.mt-48 {
   margin-top: 48px;
}

.mb-8 {
   margin-bottom: 8px;
}

.mb-16 {
   margin-bottom: 16px;
}

.mb-24 {
   margin-bottom: 24px;
}

.mb-32 {
   margin-bottom: 32px;
}

.fw-600 {
   font-weight: 600;
}

.fw-700 {
   font-weight: 700;
}

.color-primary {
   color: var(--primary);
}

.color-light {
   color: var(--text-light);
}

.color-accent {
   color: var(--accent);
}

/* =============================================
   PRICING CARDS (Prezzi page)
   ============================================= */
.pricing-cards {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 28px;
   align-items: start;
}

.pricing-card {
   background: var(--bg-card);
   border: 1.5px solid var(--border);
   border-radius: var(--radius-xl);
   padding: 36px 28px;
   position: relative;
   transition: all 0.3s;
}

.pricing-card:hover {
   box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
   border-color: var(--primary);
   box-shadow: var(--shadow-xl);
   transform: scale(1.03);
}

.plan-badge {
   position: absolute;
   top: -14px;
   left: 50%;
   transform: translateX(-50%);
   background: linear-gradient(135deg, var(--primary), var(--accent));
   color: #fff;
   padding: 5px 20px;
   border-radius: 20px;
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   white-space: nowrap;
}

.plan-name {
   font-size: 22px;
   font-weight: 800;
   color: var(--dark);
   margin-bottom: 6px;
}

.plan-price {
   font-size: 48px;
   font-weight: 900;
   color: var(--dark);
   line-height: 1;
   display: flex;
   align-items: flex-start;
   gap: 2px;
   margin-bottom: 8px;
}

.price-amount {
   font-size: 48px;
   font-weight: 900;
}

.price-currency {
   font-size: 24px;
   font-weight: 700;
   margin-top: 8px;
}

.price-period {
   font-size: 15px;
   font-weight: 400;
   color: var(--text-light);
   align-self: flex-end;
   padding-bottom: 6px;
}

.plan-desc {
   font-size: 14px;
   color: var(--text-light);
   line-height: 1.6;
   margin: 12px 0 24px;
   min-height: 48px;
}

.plan-features {
   list-style: none;
   margin-bottom: 28px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.plan-features li {
   font-size: 14px;
   color: var(--text);
   display: flex;
   align-items: flex-start;
   gap: 10px;
   line-height: 1.5;
}

.plan-features .check {
   color: var(--accent);
   font-weight: 700;
   font-size: 15px;
   flex-shrink: 0;
}

.plan-features .dash {
   color: var(--border);
   font-weight: 700;
   font-size: 15px;
   flex-shrink: 0;
}

.feature-addon {
   color: var(--text-lighter) !important;
   font-size: 13px !important;
}

.feature-addon span {
   color: var(--primary);
   font-weight: 700;
   flex-shrink: 0;
}

.feature-addon em {
   color: var(--primary);
   font-style: normal;
   font-weight: 600;
}

.btn-full {
   width: 100%;
}

.plan-note {
   font-size: 12px;
   color: var(--text-lighter);
   text-align: center;
   margin-top: 12px;
}

/* Add-ons grid */
.addons-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
}

.addon-card {
   background: var(--bg-soft);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   padding: 24px;
}

.addon-card h4 {
   font-size: 15px;
   font-weight: 700;
   margin-bottom: 8px;
}

.addon-price {
   font-size: 24px;
   font-weight: 800;
   color: var(--primary);
   margin-bottom: 8px;
}

.addon-price small {
   font-size: 13px;
   font-weight: 400;
   color: var(--text-light);
}

.addon-card p {
   font-size: 13px;
   color: var(--text-light);
   line-height: 1.65;
}

/* Pricing table check/dash */
.check {
   color: var(--accent);
   font-weight: 700;
}

.dash {
   color: var(--text-lighter);
}

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-filter {
   background: none;
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 5px 14px;
   font-size: 13px;
   font-weight: 500;
   cursor: pointer;
   color: var(--text-light);
   transition: all 0.2s;
   font-family: inherit;
}

.blog-filter:hover {
   border-color: var(--primary);
   color: var(--primary);
}

.blog-filter.active {
   background: var(--primary);
   color: #fff;
   border-color: var(--primary);
}

.blog-featured-grid {
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr;
   gap: 24px;
}

.blog-card-featured {
   grid-column: 1;
   grid-row: span 1;
   display: grid;
   grid-template-columns: 1fr;
   background: var(--bg-card);
   border: 1px solid var(--border);
   border-radius: var(--radius-xl);
   overflow: hidden;
   transition: all 0.3s;
}

.blog-card-featured:hover {
   box-shadow: var(--shadow-lg);
   transform: translateY(-4px);
}

.blog-img-wrap {
   overflow: hidden;
}

.blog-img-placeholder {
   min-height: 220px;
}

.blog-content {
   padding: 24px;
}

.blog-card-sm {
   background: var(--bg-soft);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   padding: 20px;
   transition: all 0.2s;
}

.blog-card-sm:hover {
   box-shadow: var(--shadow);
   border-color: var(--primary-light);
}

.blog-card-sm h4 {
   font-size: 14px;
   font-weight: 700;
   margin: 8px 0 10px;
   line-height: 1.45;
}

.blog-read {
   font-size: 12px;
   color: var(--text-lighter);
}

.blog-date {
   font-size: 12px;
   color: var(--text-lighter);
}

.mb-48 {
   margin-bottom: 48px;
}

.mb-32 {
   margin-bottom: 32px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form-card {
   background: var(--bg-card);
   border: 1.5px solid var(--border);
   border-radius: var(--radius-xl);
   padding: 40px;
   box-shadow: var(--shadow-lg);
}

.contact-info-blocks {
   display: flex;
   flex-direction: column;
   gap: 24px;
}

.contact-block {
   display: flex;
   gap: 16px;
   align-items: flex-start;
}

.contact-icon {
   width: 44px;
   height: 44px;
   background: var(--primary-light);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   flex-shrink: 0;
}

.contact-block a {
   color: var(--primary);
   font-weight: 600;
   text-decoration: none;
}

.contact-block a:hover {
   text-decoration: underline;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
   margin-bottom: 16px;
}

.form-group {
   margin-bottom: 16px;
}

.form-group label {
   display: block;
   font-size: 13px;
   font-weight: 600;
   color: var(--dark);
   margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   border: 1.5px solid var(--border);
   border-radius: 10px;
   padding: 12px 16px;
   font-size: 14px;
   font-family: inherit;
   outline: none;
   transition: border-color 0.2s, box-shadow 0.2s;
   background: var(--bg-soft);
   color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   border-color: var(--primary);
   box-shadow: 0 0 0 3px rgba(11, 138, 138, 0.1);
   background: #fff;
}

.form-group textarea {
   resize: vertical;
   min-height: 110px;
}

.form-group select {
   appearance: none;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 14px center;
   padding-right: 36px;
   background-color: var(--bg-soft);
}

.form-check {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   margin-bottom: 20px;
}

.form-check label {
   font-size: 13px;
   color: var(--text-light);
   cursor: pointer;
   line-height: 1.5;
}

.form-check input[type="checkbox"] {
   width: 16px;
   height: 16px;
   margin-top: 2px;
   accent-color: var(--primary);
   flex-shrink: 0;
}

.form-check a {
   color: var(--primary);
}

.btn-lg {
   padding: 14px 32px;
   font-size: 16px;
   border-radius: 12px;
}

/* =============================================
   ABOUT / TEAM
   ============================================= */
.team-card .team-role {
   font-size: 13px;
   color: var(--primary);
   font-weight: 600;
   margin-bottom: 10px;
   display: block;
}

.team-card p {
   font-size: 13px;
   color: var(--text-light);
   line-height: 1.65;
}

.team-social {
   margin-top: 12px;
   display: flex;
   justify-content: center;
   gap: 8px;
}

.team-social a {
   font-size: 18px;
   text-decoration: none;
}

/* =============================================
   LEGAL PAGE
   ============================================= */
.legal-content h2 {
   margin: 40px 0 16px;
   font-size: 24px;
}

.legal-content h3 {
   margin: 24px 0 10px;
   font-size: 17px;
   font-weight: 700;
}

.legal-content p {
   font-size: 14px;
   color: var(--text-light);
   line-height: 1.8;
   margin-bottom: 14px;
}

.legal-content ul {
   padding-left: 20px;
   list-style: disc;
   margin-bottom: 14px;
}

.legal-content ul li {
   font-size: 14px;
   color: var(--text-light);
   line-height: 1.8;
}

/* =============================================
   RESPONSIVE — new pages
   ============================================= */
@media (max-width: 1024px) {
   .pricing-cards {
      grid-template-columns: 1fr;
   }

   .pricing-card-featured {
      transform: none;
   }

   .addons-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .blog-featured-grid {
      grid-template-columns: 1fr 1fr;
   }

   .blog-card-featured {
      grid-column: 1 / -1;
   }
}

@media (max-width: 768px) {
   .pricing-cards {
      grid-template-columns: 1fr;
   }

   .addons-grid {
      grid-template-columns: 1fr 1fr;
   }

   .blog-featured-grid {
      grid-template-columns: 1fr;
   }

   .contact-form-card {
      padding: 24px;
   }

   .form-row {
      grid-template-columns: 1fr;
   }

   .team-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 480px) {
   .addons-grid {
      grid-template-columns: 1fr;
   }

   .team-grid {
      grid-template-columns: 1fr;
   }

   .pricing-cards {
      grid-template-columns: 1fr;
   }
}