/* ==================================
   Global
=================================== */
* {
    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
=================================== */

.site-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;
}

.brand-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
=================================== */

.services-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 120px;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(71, 175, 224, 0.23),
      transparent 29%
    ),
    radial-gradient(
      circle at 92% 18%,
      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);
}

.hero-content h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(46px, 6vw, 75px);
  line-height: 1.06;
}

.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-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.hero-points i {
  color: var(--green);
}


/* Hero Visual */

.hero-visual {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-dashboard {
  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);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 27px;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.dashboard-logo {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 57, 118, 0.12);
}

.dashboard-logo img {
  width: 50px;
}

.dashboard-title span {
  display: block;
  color: var(--light-text);
  font-size: 11px;
}

.dashboard-title h3 {
  color: var(--navy);
  font-size: 18px;
}

.dashboard-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;
}

.dashboard-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.dashboard-services {
  padding: 20px;
  border-radius: 20px;
  background: var(--light-bg);
}

.dashboard-service {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
}

.dashboard-service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 18px;
}

.dashboard-service span {
  display: block;
  color: var(--light-text);
  font-size: 10px;
}

.dashboard-service strong {
  color: var(--navy);
  font-size: 13px;
}

.dashboard-service > i {
  color: var(--green);
  font-size: 18px;
}

.dashboard-line {
  width: 2px;
  height: 23px;
  margin-left: 35px;
  background: linear-gradient(
    var(--blue),
    var(--green)
  );
}

.dashboard-statistics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 20px;
}

.dashboard-statistics div {
  padding: 14px 8px;
  text-align: center;
  border-radius: 14px;
  background: var(--green-bg);
}

.dashboard-statistics i {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 17px;
}

.dashboard-statistics strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.dashboard-statistics span {
  color: var(--light-text);
  font-size: 9px;
}

.floating-card {
  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-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--white);
  font-size: 20px;
}

.seo-floating-icon {
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--light-blue)
  );
}

.ads-floating-icon {
  background: linear-gradient(
    135deg,
    #7b2cbf,
    #e1306c
  );
}

.website-floating-icon {
  background: linear-gradient(
    135deg,
    var(--dark-green),
    var(--lime)
  );
}

.floating-card span {
  display: block;
  color: var(--light-text);
  font-size: 10px;
}

.floating-card strong {
  color: var(--navy);
  font-size: 12px;
}

.seo-floating {
  top: 35px;
  left: -35px;
}

.ads-floating {
  right: -35px;
  bottom: 60px;
}

.website-floating {
  left: 5px;
  bottom: 5px;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  width: 310px;
  height: 310px;
  left: -160px;
  bottom: -170px;
  border: 45px solid rgba(2, 92, 161, 0.07);
}

.hero-shape-two {
  width: 280px;
  height: 280px;
  right: -130px;
  top: -130px;
  border: 45px solid rgba(48, 167, 96, 0.08);
}


/* ==================================
   Statistics
=================================== */

.statistics-section {
  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: 780px;
  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 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.18;
}

.section-heading p {
  color: var(--light-text);
  font-size: 17px;
}


/* ==================================
   Main Services
=================================== */

.main-services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  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::before {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  top: -70px;
  right: -65px;
  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.38);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scale(1.45);
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 65px;
  height: 65px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 10px 22px rgba(0, 57, 118, 0.16);
}

.seo-icon {
  background: linear-gradient(135deg, #025ca1, #47afe0);
}

.social-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.google-icon {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.meta-icon {
  background: linear-gradient(135deg, #0866ff, #6d4aff);
}

.graphic-icon {
  background: linear-gradient(135deg, #7b2cbf, #e1306c);
}

.branding-icon {
  background: linear-gradient(135deg, #001c4e, #2789c8);
}

.ecommerce-icon {
  background: linear-gradient(135deg, #ff9900, #30a760);
}

.website-icon {
  background: linear-gradient(135deg, #001c4e, #47afe0);
}

.promotion-icon {
  background: linear-gradient(135deg, #02644b, #9dc944);
}

.video-icon {
  background: linear-gradient(135deg, #e53935, #ff9800);
}

.content-icon {
  background: linear-gradient(135deg, #30a760, #9dc944);
}

.lead-icon {
  background: linear-gradient(135deg, #003976, #47afe0);
}

.service-card > span {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
}

.service-card > p {
  position: relative;
  z-index: 2;
  margin-bottom: 19px;
  color: var(--light-text);
  font-size: 14px;
}

.service-card ul {
  position: relative;
  z-index: 2;
  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);
}


/* ==================================
   Advanced Services
=================================== */

.advanced-services-section {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(71, 175, 224, 0.11),
      transparent 25%
    ),
    var(--light-bg);
}

.advanced-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.advanced-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: var(--white);
  transition: 0.35s ease;
}

.advanced-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.advanced-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 24px;
}

.advanced-card:nth-child(even) .advanced-icon {
  background: linear-gradient(
    135deg,
    var(--green),
    var(--lime)
  );
}

.advanced-card h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 18px;
}

.advanced-card p {
  color: var(--light-text);
  font-size: 13px;
}


/* ==================================
   Package
=================================== */

.package-section {
  background: var(--green-bg);
}

.package-card {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 55px;
  overflow: hidden;
  border: 1px solid rgba(48, 167, 96, 0.25);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 25px 60px rgba(0, 57, 118, 0.15);
}

.package-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -180px;
  right: -140px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(71, 175, 224, 0.16),
    rgba(157, 201, 68, 0.13)
  );
}

.package-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 3;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--white);
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green)
  );
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.package-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.package-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 32px;
}

.package-header span {
  display: block;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.package-header h3 {
  color: var(--navy);
  font-size: 30px;
}

.package-price {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  margin-bottom: 16px;
  color: var(--navy);
}

.package-price > span {
  margin-right: 5px;
  padding-bottom: 17px;
  font-size: 30px;
  font-weight: 800;
}

.package-price strong {
  font-size: clamp(60px, 10vw, 95px);
  line-height: 1;
}

.package-price small {
  padding: 0 0 16px 10px;
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
}

.package-description {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--light-text);
  font-size: 16px;
}

.package-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 20px;
  margin-bottom: 32px;
}

.package-features div {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px;
  border-radius: 13px;
  color: var(--navy);
  background: var(--light-bg);
  font-size: 13px;
  font-weight: 700;
}

.package-features i {
  margin-top: 3px;
  color: var(--green);
}

.package-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.package-primary-button,
.package-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  transition: 0.3s ease;
}

.package-primary-button {
  color: var(--white);
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green)
  );
}

.package-secondary-button {
  color: var(--navy);
  border: 1px solid var(--border);
  background: var(--white);
}

.package-primary-button:hover,
.package-secondary-button:hover {
  transform: translateY(-3px);
}


/* ==================================
   Package Services
=================================== */

.package-details-section {
  background: var(--white);
}

.package-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.package-service-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 7px 22px rgba(0, 57, 118, 0.06);
  transition: 0.3s ease;
}

.package-service-item:hover {
  transform: translateY(-5px);
  border-color: rgba(48, 167, 96, 0.35);
  box-shadow: var(--shadow);
}

.package-service-item i {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 19px;
}

.package-service-item span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}


/* ==================================
   Contact
=================================== */

.contact-section {
  padding: 90px 0;
  background: var(--light-bg);
}

.contact-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  padding: 60px;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(157, 201, 68, 0.25),
      transparent 28%
    ),
    linear-gradient(
      125deg,
      var(--navy),
      var(--dark-blue),
      var(--blue),
      var(--green)
    );
  box-shadow: 0 25px 60px rgba(0, 28, 78, 0.24);
}

.contact-box::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  left: -180px;
  bottom: -200px;
  border: 48px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.contact-content,
.contact-action {
  position: relative;
  z-index: 2;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-content h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.15;
}

.contact-content > p {
  max-width: 650px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.contact-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.14);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 15px;
  color: var(--white);
  font-size: 21px;
}

.phone-contact-icon {
  background: linear-gradient(
    135deg,
    var(--green),
    var(--lime)
  );
}

.website-contact-icon {
  background: linear-gradient(
    135deg,
    var(--medium-blue),
    var(--light-blue)
  );
}

.email-contact-icon {
  background: linear-gradient(
    135deg,
    #39c5e8,
    #fbbc05
  );
}

.contact-item span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--white);
  font-size: 15px;
  word-break: break-word;
}

.contact-action {
  align-self: center;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 27px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-action-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--navy);
  background: var(--white);
  font-size: 30px;
}

.contact-action h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.contact-action p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.contact-button,
.call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 800;
  transition: 0.3s ease;
}

.contact-button {
  margin-bottom: 12px;
  color: var(--navy);
  background: var(--white);
}

.call-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-button:hover,
.call-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;
}


/* ==================================
   WhatsApp Button
=================================== */

.whatsapp-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 50px;
  color: var(--white);
  background: #25d366;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
  transition: 0.3s ease;
}

.whatsapp-button i {
  font-size: 25px;
}

.whatsapp-button span {
  font-size: 13px;
}

.whatsapp-button:hover {
  transform: translateY(-5px);
  background: #128c7e;
}


/* ==================================
   Responsive
=================================== */

@media (max-width: 1100px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 780px;
    margin: auto;
    text-align: center;
  }

  .hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 650px;
    margin: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advanced-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@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);
  }

  .package-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 620px) {

  .section {
    padding: 65px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .brand-logo img {
    width: 100px;
  }

  .header-button {
    padding: 10px 13px;
    font-size: 11px;
  }

  .services-hero {
    padding: 75px 0 105px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .hero-points {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .services-dashboard {
    padding: 19px;
  }

  .dashboard-header {
    align-items: flex-start;
  }

  .dashboard-statistics {
    grid-template-columns: 1fr;
  }

  .floating-card {
    min-width: 155px;
    padding: 9px;
  }

  .floating-icon {
    width: 37px;
    height: 37px;
    font-size: 17px;
  }

  .floating-card strong {
    font-size: 10px;
  }

  .seo-floating {
    top: 0;
    left: -5px;
  }

  .ads-floating {
    right: -5px;
    bottom: 5px;
  }

  .website-floating {
    display: none;
  }

  .statistics-grid,
  .services-grid,
  .advanced-grid,
  .package-services-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;
  }

  .service-card,
  .advanced-card {
    padding: 25px;
  }

  .package-card {
    padding: 40px 24px;
  }

  .package-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-bottom: 20px;
  }

  .package-header {
    align-items: flex-start;
  }

  .package-header h3 {
    font-size: 23px;
  }

  .package-price {
    flex-wrap: wrap;
  }

  .package-price strong {
    font-size: 65px;
  }

  .package-price small {
    width: 100%;
    padding: 7px 0 0;
  }

  .package-features {
    grid-template-columns: 1fr;
  }

  .package-actions {
    flex-direction: column;
  }

  .package-primary-button,
  .package-secondary-button {
    width: 100%;
  }

  .contact-section {
    padding: 65px 0;
  }

  .contact-box {
    padding: 37px 23px;
  }

  .contact-action {
    padding: 28px 20px;
  }

  .contact-item strong {
    font-size: 12px;
  }

  .whatsapp-button {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-button span {
    display: none;
  }

  .whatsapp-button i {
    font-size: 28px;
  }

}