/* ==============================
   Global Settings
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #001c4e;
  --dark-blue: #003976;
  --blue: #025ca1;
  --medium-blue: #2789c8;
  --light-blue: #47afe0;

  --dark-green: #02644b;
  --green: #30a760;
  --medium-green: #66b753;
  --lime: #9dc944;

  --white: #ffffff;
  --light-bg: #f4faff;
  --green-bg: #f3fbf5;

  --text: #26384a;
  --light-text: #68798a;
  --border: #dce9f1;

  --shadow:
    0 18px 45px rgba(0, 57, 118, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 90%);
  margin: auto;
}

.section {
  padding: 90px 0;
}


/* ==============================
   Header
============================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.97);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo img {
  width: 125px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green),
    var(--lime)
  );
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-button {
  padding: 12px 22px;
  border-radius: 50px;
  color: var(--white);
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green)
  );
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(2, 92, 161, 0.22);
  transition: 0.3s ease;
}

.header-button:hover {
  transform: translateY(-3px);
}


/* ==============================
   Hero
============================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 120px;
  background:
    radial-gradient(
      circle at 10% 25%,
      rgba(71, 175, 224, 0.24),
      transparent 29%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(157, 201, 68, 0.24),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #f7fcff,
      #f1fcf6
    );
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(48, 167, 96, 0.28);
  border-radius: 50px;
  color: var(--dark-green);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge i {
  color: var(--blue);
  font-size: 16px;
}

.hero-content h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.07;
}

.hero-content h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--light-blue),
    var(--green),
    var(--lime)
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-content > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--light-text);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green)
  );
  box-shadow: 0 12px 25px rgba(2, 92, 161, 0.22);
}

.secondary-button {
  color: var(--navy);
  border: 1px solid var(--border);
  background: var(--white);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-benefits div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.hero-benefits i {
  color: var(--green);
}


/* Hero Visual */

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.automation-panel {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 480px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 25px 60px rgba(0, 57, 118, 0.18);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.panel-main-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 24px;
}

.panel-title span {
  display: block;
  color: var(--light-text);
  font-size: 11px;
}

.panel-title h3 {
  color: var(--navy);
  font-size: 19px;
}

.active-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 50px;
  color: var(--dark-green);
  background: rgba(157, 201, 68, 0.2);
  font-size: 11px;
  font-weight: 800;
}

.active-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.workflow-list {
  padding: 20px;
  border-radius: 20px;
  background: var(--light-bg);
}

.workflow-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
}

.workflow-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  font-size: 20px;
}

.lead-icon {
  background: linear-gradient(
    135deg,
    var(--dark-blue),
    var(--light-blue)
  );
}

.crm-icon {
  background: linear-gradient(
    135deg,
    var(--dark-green),
    var(--green)
  );
}

.message-icon {
  background: linear-gradient(
    135deg,
    #128c7e,
    #25d366
  );
}

.workflow-content span {
  display: block;
  color: var(--light-text);
  font-size: 10px;
}

.workflow-content strong {
  color: var(--navy);
  font-size: 13px;
}

.completed-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.workflow-connector {
  width: 2px;
  height: 26px;
  margin-left: 37px;
  background: linear-gradient(
    var(--blue),
    var(--green)
  );
}

.panel-statistics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 20px;
}

.panel-statistics div {
  padding: 14px 8px;
  text-align: center;
  border-radius: 14px;
  background: var(--green-bg);
}

.panel-statistics i {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 17px;
}

.panel-statistics strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.panel-statistics span {
  color: var(--light-text);
  font-size: 9px;
}


/* Floating Cards */

.floating-service {
  position: absolute;
  z-index: 5;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-service-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--white);
  font-size: 20px;
}

.chatbot-colour {
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--light-blue)
  );
}

.whatsapp-colour {
  background: linear-gradient(
    135deg,
    #128c7e,
    #25d366
  );
}

.email-colour {
  background: linear-gradient(
    135deg,
    var(--dark-green),
    var(--lime)
  );
}

.floating-service span {
  display: block;
  color: var(--light-text);
  font-size: 10px;
}

.floating-service strong {
  color: var(--navy);
  font-size: 12px;
}

.chatbot-floating {
  top: 35px;
  left: -35px;
}

.whatsapp-floating {
  right: -35px;
  bottom: 60px;
}

.email-floating {
  left: 5px;
  bottom: 5px;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-decoration-one {
  width: 310px;
  height: 310px;
  left: -160px;
  bottom: -170px;
  border: 45px solid rgba(2, 92, 161, 0.07);
}

.hero-decoration-two {
  width: 280px;
  height: 280px;
  right: -130px;
  top: -130px;
  border: 45px solid rgba(48, 167, 96, 0.08);
}


/* ==============================
   Statistics
============================== */

.statistics {
  position: relative;
  z-index: 10;
  margin-top: -45px;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--border);
}

.stat-card:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 21px;
}

.stat-card h3 {
  color: var(--blue);
  font-size: 29px;
  line-height: 1;
}

.stat-card p {
  margin-top: 5px;
  color: var(--light-text);
  font-size: 12px;
  font-weight: 700;
}


/* ==============================
   Section Heading
============================== */

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-heading h2,
.benefits-content h2 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.18;
}

.section-heading p,
.benefits-content > p {
  color: var(--light-text);
  font-size: 17px;
}


/* ==============================
   Services
============================== */

.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 9px 30px rgba(0, 57, 118, 0.07);
  transition: 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: -55px;
  right: -50px;
  border-radius: 50%;
  background: rgba(71, 175, 224, 0.08);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(48, 167, 96, 0.35);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  transform: scale(1.5);
}

.service-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-size: 27px;
  box-shadow: 0 10px 20px rgba(0, 57, 118, 0.17);
}

.chatbot-service-icon {
  background: linear-gradient(
    135deg,
    #025ca1,
    #47afe0
  );
}

.lead-service-icon {
  background: linear-gradient(
    135deg,
    #003976,
    #2789c8
  );
}

.whatsapp-service-icon {
  background: linear-gradient(
    135deg,
    #128c7e,
    #25d366
  );
}

.email-service-icon {
  background: linear-gradient(
    135deg,
    #ea4335,
    #fbbc05
  );
}

.crm-service-icon {
  background: linear-gradient(
    135deg,
    #02644b,
    #30a760
  );
}

.content-service-icon {
  background: linear-gradient(
    135deg,
    #30a760,
    #9dc944
  );
}

.workflow-service-icon {
  background: linear-gradient(
    135deg,
    #001c4e,
    #025ca1
  );
}

.report-service-icon {
  background: linear-gradient(
    135deg,
    #2789c8,
    #66b753
  );
}

.service-number {
  color: rgba(0, 57, 118, 0.14);
  font-size: 25px;
  font-weight: 900;
}

.service-category {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.service-card > p {
  margin-bottom: 18px;
  color: var(--light-text);
  font-size: 14px;
}

.service-card ul {
  display: grid;
  gap: 8px;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
  font-size: 12px;
}

.service-card li i {
  margin-top: 2px;
  color: var(--green);
  font-size: 12px;
}


/* ==============================
   Benefits
============================== */

.benefits-section {
  overflow: hidden;
  background: var(--light-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.benefits-content > p {
  margin-bottom: 32px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-item {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: var(--white);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 21px;
}

.benefit-item h3 {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 17px;
}

.benefit-item p {
  color: var(--light-text);
  font-size: 13px;
}


/* Integration Card */

.benefits-visual {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-card {
  position: relative;
  width: 100%;
  max-width: 450px;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at center,
      rgba(71, 175, 224, 0.12),
      transparent 45%
    ),
    var(--white);
  box-shadow: 0 25px 65px rgba(0, 57, 118, 0.16);
}

.integration-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.integration-header span {
  display: block;
  color: var(--light-text);
  font-size: 11px;
}

.integration-header h3 {
  color: var(--navy);
  font-size: 20px;
}

.integration-header > i {
  color: var(--green);
  font-size: 21px;
}

.integration-centre {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.centre-logo {
  position: relative;
  z-index: 3;
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 16px rgba(71, 175, 224, 0.08),
    0 0 0 32px rgba(48, 167, 96, 0.06),
    var(--shadow);
}

.centre-logo img {
  width: 92px;
}

.integration-item {
  position: absolute;
  z-index: 4;
  width: 93px;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 57, 118, 0.1);
}

.integration-item i {
  font-size: 29px;
}

.integration-item span {
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.whatsapp-integration {
  top: 90px;
  left: 25px;
}

.whatsapp-integration i {
  color: #25d366;
}

.email-integration {
  top: 90px;
  right: 25px;
}

.email-integration i {
  color: #ea4335;
}

.crm-integration {
  left: 40px;
  bottom: 25px;
}

.crm-integration i {
  color: var(--blue);
}

.chatbot-integration {
  right: 40px;
  bottom: 25px;
}

.chatbot-integration i {
  color: var(--green);
}


/* ==============================
   Process
============================== */

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.process-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 22px;
}

.process-card span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 7px 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.process-card p {
  color: var(--light-text);
  font-size: 14px;
}


/* ==============================
   CTA
============================== */

.cta-section {
  padding: 85px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 55px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(
    120deg,
    var(--navy),
    var(--blue),
    var(--green)
  );
  box-shadow: 0 22px 50px rgba(0, 28, 78, 0.23);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: 170px;
  bottom: -210px;
  border: 42px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-icon {
  position: relative;
  z-index: 2;
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--navy);
  background: var(--white);
  font-size: 36px;
}

.cta-content,
.cta-button {
  position: relative;
  z-index: 2;
}

.cta-content > span {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cta-content h2 {
  margin-bottom: 8px;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.2;
}

.cta-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 14px 23px;
  border-radius: 50px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  transition: 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}


/* ==============================
   Footer
============================== */

.footer {
  padding: 60px 0 25px;
  color: var(--white);
  background: #00163e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 40px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 18px;
  padding: 7px;
  border-radius: 10px;
  background: var(--white);
}

.footer-about p,
.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-column h3 {
  margin-bottom: 18px;
  font-size: 17px;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
}

.footer-contact i {
  margin-top: 3px;
  color: var(--lime);
}

.copyright {
  padding-top: 23px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}


/* ==============================
   Large Tablet
============================== */

@media (max-width: 1100px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
    margin: auto;
    text-align: center;
  }

  .hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-benefits {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 650px;
    margin: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    grid-template-columns: auto 1fr;
  }

  .cta-button {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==============================
   Tablet
============================== */

@media (max-width: 850px) {

  .nav-links {
    display: none;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   Mobile
============================== */

@media (max-width: 620px) {

  .section {
    padding: 65px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .logo img {
    width: 100px;
  }

  .header-button {
    padding: 10px 13px;
    font-size: 11px;
  }

  .hero {
    padding: 75px 0 105px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }

  .hero-visual {
    min-height: 475px;
  }

  .automation-panel {
    padding: 19px;
  }

  .panel-header {
    align-items: flex-start;
  }

  .active-status {
    padding: 6px 8px;
  }

  .panel-statistics {
    grid-template-columns: 1fr;
  }

  .floating-service {
    min-width: 155px;
    padding: 9px;
  }

  .floating-service-icon {
    width: 37px;
    height: 37px;
    font-size: 17px;
  }

  .floating-service strong {
    font-size: 10px;
  }

  .chatbot-floating {
    top: 0;
    left: -5px;
  }

  .whatsapp-floating {
    right: -5px;
    bottom: 5px;
  }

  .email-floating {
    display: none;
  }

  .statistics-grid,
  .services-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .integration-card {
    min-height: 400px;
    padding: 22px;
  }

  .centre-logo {
    width: 105px;
    height: 105px;
  }

  .centre-logo img {
    width: 78px;
  }

  .integration-item {
    width: 78px;
    height: 78px;
  }

  .whatsapp-integration {
    left: 5px;
  }

  .email-integration {
    right: 5px;
  }

  .crm-integration {
    left: 15px;
  }

  .chatbot-integration {
    right: 15px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    padding: 42px 24px;
    text-align: center;
  }

  .cta-icon {
    margin: auto;
  }
}