/* ============================================
   BerkinNet — StormWall Exact Match Design
   Based on main-min.css analysis
   ============================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  color-scheme: only light;
  --green: #2db262;
  --green-dark: #2a9e5a;
  --green-light: #8be0ac;
  --green-bg: #defa32;

  --navy: #082554;
  --navy-deep: #09183b;
  --navy-card: #0f2857;
  --navy-mid: #2d4e8c;
  --navy-light: #5a7cb8;
  --navy-input: #15346e;

  --blue-link: #3b92eb;
  --blue-link-hover: #277ad9;
  --blue-bg: #dde6f7;
  --blue-bg-light: #f3f7ff;
  --blue-badge: #c6d7f7;

  --red-attack: #db4d37;
  --red-attack-hover: #c4412d;

  --text-dark: #082554;
  --text-body: #082554;
  --text-light: #5a7cb8;
  --text-grey: #a1a7b3;
  --text-white: #ffffff;

  --bg-white: #ffffff;
  --bg-light: #f3f7ff;
  --bg-footer: #00091d;
  --bg-gradient-blue: linear-gradient(103.42deg, #EAF0FD 0%, #F2F7FF 100%);
  --bg-gradient-hero: linear-gradient(252deg, #fff 1.32%, #dee8fe 95.5%);
  --bg-gradient-map: linear-gradient(143.35deg, #1A3D7F 26.13%, #2C76C2 81.09%, #8EFDBA 114.39%);
  --bg-gradient-form: linear-gradient(154deg, #8efdba -30.23%, #2f82d6 65.52%, #284781 130.76%);
  --bg-gradient-cta: linear-gradient(147deg, #7BE1A4 -27.18%, #2F82D6 29.89%, #1A3D7F 86.29%);
  --bg-gradient-wave: linear-gradient(284.79deg, #FFF -74.45%, #DEE8FE 160%);

  --shadow-tile: 0px 3px 26px 0px rgba(60, 80, 110, 0.21);
  --shadow-card: 0px 5px 40px 0px rgba(0, 26, 102, 0.14);
  --shadow-card-sm: 0px 3px 19px 0px rgba(60, 80, 110, 0.16);
  --shadow-card-hover: 0px 3px 23px 0px rgba(60, 80, 110, 0.28);
  --shadow-dropdown: 0px 4px 27px 0px rgba(23, 32, 53, 0.16);

  --radius-card: 24px;
  --radius-card-lg: 32px;
  --radius-btn: 16px;
  --radius-input: 16px;
  --radius-pill: 80px;

  --page-width: 1176px;
  --transition: 0.2s linear all;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
  overflow-y: scroll !important;
}

div, a, p { font-style: normal; }
h1, h2, h3 { font-family: 'Inter', sans-serif; line-height: 1.15; letter-spacing: -0.02em; }

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ---------- Container ---------- */
.container {
  padding: 0 12px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.main {
  display: flex;
  flex-direction: column;
}

/* ============================================
   HEADER — StormWall 2-Bar Structure
   ============================================ */

/* -- Top Bar: Navy logo bar -- */
.header-logo {
  width: 100%;
  min-height: 72px;
  background-color: var(--navy-deep);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
}

.header-body {
  display: flex;
  justify-content: space-between;
  width: var(--page-width);
  height: 40px;
  align-items: center;
  position: relative;
}

.header-body > a > img { display: block; }

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.header-brand .brand-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.header-brand .brand-text span {
  color: var(--green);
}

.enter-elements {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  gap: 8px;
  color: #fff;
  transition: var(--transition);
  align-items: center;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-link {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.call-link:hover {
  color: var(--green);
}

.enter-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.enter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.enter-btn:hover {
  color: var(--green-dark);
}

/* -- Bottom Bar: White menu bar -- */
.header-menu {
  z-index: 99;
  width: 100%;
  min-height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header-menu.menu-fixed {
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.menu {
  display: flex;
  justify-content: space-between;
  width: var(--page-width);
  height: 40px;
  align-items: center;
}

.menu-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-link {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  height: 80px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.menu-link:hover {
  color: var(--green);
}

.menu-link.active {
  color: var(--green);
}

/* StormWall-style hover underline via box-shadow */
.cW {
  color: var(--text-dark);
  height: 80px;
  display: flex;
  align-items: center;
}

.cW:hover {
  box-shadow: 0px 2px 0px 0px var(--green);
  color: var(--green);
}

/* Dropdown Menus */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
}

.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 80px;
  left: 0;
  background-color: #fff;
  min-width: 220px;
  box-shadow: var(--shadow-dropdown);
  z-index: 100;
  border-radius: 0 0 12px 12px;
  border-top: 2px solid var(--green);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  color: var(--text-dark);
  padding: 12px 24px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-content a:hover {
  background-color: var(--bg-light);
  color: var(--green);
  padding-left: 28px;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Search Input */
.input-body {
  gap: 16px;
  display: flex;
  height: 24px;
  padding: 8px 24px;
  font-size: 16px;
  align-items: center;
  font-weight: 400;
  border-radius: 16px;
  justify-content: space-between;
  background-color: var(--navy-input);
  width: 232px;
  position: relative;
  box-sizing: content-box;
}

.input-search {
  background-color: var(--navy-input);
  border: none;
  height: 24px;
  outline: none;
  color: white;
  font-size: 14px;
  width: 100%;
}

.input-search::placeholder {
  color: var(--navy-light);
  font-size: 14px;
}

/* Attack Button */
.attack {
  color: var(--red-attack);
  border: 2px solid var(--red-attack);
  height: 36px;
  width: 185px;
  border-radius: var(--radius-btn);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  box-sizing: content-box;
  transition: var(--transition);
}

.attack:hover {
  background-color: var(--red-attack);
  color: white !important;
}

/* ============================================
   TYPOGRAPHY — StormWall Exact
   ============================================ */
.sw-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0;
}

.sw-title span {
  font-weight: 700;
  color: var(--green);
}

.sw-title--page {
  font-size: 32px;
}

.sw-description {
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0;
}

.sw-extra {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--green);
  margin: 0;
}

.section-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 120%;
  margin-bottom: 12px;
}

.section-title .green { color: var(--green); }

.section-desc {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 28px;
  max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ============================================
   BUTTONS — StormWall Exact
   ============================================ */
.btn, .green-btn {
  display: flex;
  width: auto;
  height: 48px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  gap: 8px;
  text-wrap: nowrap;
  transition: var(--transition);
  text-decoration: none;
}

.btn:hover, .green-btn:hover {
  background-color: var(--green-dark) !important;
}

.btn-transparent {
  background: #EFF4FE;
  color: var(--green);
  outline: 2px solid var(--green);
}

.btn-transparent:hover {
  color: #fff !important;
  background: var(--green-dark) !important;
  outline-color: var(--green-dark) !important;
}

.btn-white {
  background: #fff;
  color: var(--green);
  border: 2px solid #fff;
}

.btn-white:hover {
  background: rgba(255,255,255,0.9) !important;
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-btn);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25) !important;
}

/* Div-button (detail links) */
.div-button {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-link);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: var(--transition);
}

.div-button:hover {
  color: var(--blue-link-hover);
}

/* ============================================
   sw-tile — StormWall Card System
   ============================================ */
.sw-tile {
  padding: 16px;
  border-radius: var(--radius-card);
  background: white;
  box-shadow: var(--shadow-tile);
  color: var(--text-dark);
}

.sw-tile--solid {
  padding: 24px 24px 32px;
}

.sw-tile__icon {
  width: 40px;
  height: 40px;
}

.sw-tile__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.sw-tile__description {
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
}

.sw-tile__step {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--green);
  padding: 8px 16px;
  background: white;
  border-radius: 32px;
  box-shadow: 0 2px 14px 0 rgba(60, 80, 110, 0.28);
  width: max-content;
  margin: 0;
}

/* ============================================
   HERO — StormWall Style
   ============================================ */
.hero {
  padding-top: 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--bg-gradient-blue);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
}

.hero-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 120%;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-title span {
  font-weight: 700;
  color: var(--green);
}

.hero-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============================================
   STAT CARDS — StormWall card-type1
   ============================================ */
.card-row {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.card-type1 {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 20, 60, 0.05);
  align-items: center;
  flex: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.card-type1:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 20, 60, 0.1);
  border-color: rgba(45, 178, 98, 0.3);
}

.card-type1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--green);
  opacity: 0;
  transition: 0.3s ease;
}

.card-type1:hover::before {
  opacity: 1;
}

.card-type1 .card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(45, 178, 98, 0.15) 0%, rgba(45, 178, 98, 0.05) 100%);
  border: 1px solid rgba(45, 178, 98, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.card-type1 .text-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-type1 .text-block .title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-deep);
}

.card-type1 .text-block .desc {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
  opacity: 0.8;
}

/* ============================================
   SERVICES — StormWall Products
   ============================================ */
.services {
  padding: 100px 0 40px;
  background: var(--bg-white);
  position: relative;
}

.card-block2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.card-type2 {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  width: 376px;
  min-height: 540px;
  transition: all 0.3s ease;
}

.card-type2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.card-type2 .head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 16px;
}

.card-type2 .head .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(45, 178, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.card-type2 .head .card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-deep);
  font-family: 'Inter', sans-serif;
}

.card-type2 .head .card-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

.card-type2 .card-desc {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 24px;
}

.card-type2 .list-title {
  margin-top: 16px;
  margin-bottom: 16px;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-block .list-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.list-block .blue-ellipse {
  min-width: 14px;
  width: 14px;
  height: 14px;
  background: var(--blue-link);
  border-radius: 50%;
  margin-top: 3px;
  flex-shrink: 0;
}

.list-block .list-text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}

.card-type2 .div-button {
  margin-top: auto;
  padding-top: 24px;
}

/* ============================================
   HOW IT WORKS — 4 Steps
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-gradient-blue);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: #d9e5fa;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  box-shadow: 0 2px 14px 0 rgba(60, 80, 110, 0.28);
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 30px rgba(45, 178, 98, 0.3);
}

.step-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 100px 0;
  background: var(--bg-gradient-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px 24px 32px;
  box-shadow: var(--shadow-tile);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(45, 178, 98, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--green);
  color: #fff;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   DARK CARD — StormWall Navy Card
   ============================================ */
.dark-card {
  opacity: 0;
  transform: translateY(80px);
  margin-top: 48px;
  padding: 32px 56px;
  border-radius: var(--radius-card-lg);
  background: var(--navy);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 200px;
  overflow: hidden;
  transition: all 0.8s ease;
}

.dark-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.dark-card .text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  flex: 1;
}

.dark-card .title-card {
  font-size: 28px;
  font-weight: 800;
  line-height: 36px;
  font-family: 'Inter', sans-serif;
}

.dark-card .desc-card {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  opacity: 0.85;
}

.dark-card .img-card {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   NETWORK MAP — StormWall
   ============================================ */
.network-section {
  padding: 100px 0 80px;
  background: var(--bg-gradient-map);
  position: relative;
  overflow: hidden;
}

.network-section .section-title { color: #fff; }
.network-section .section-desc { color: rgba(255,255,255,0.7); }

.map-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.map-header .r-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.map-header .r-block .green-text {
  color: var(--green);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
}

.location-boards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.board-location {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 19px;
  border: 1.5px solid var(--navy-light);
  background: rgba(12, 14, 30, 0.65);
  padding: 14px 20px;
  transition: all 0.3s ease;
}

.board-location:hover {
  background: rgba(12, 14, 30, 0.35);
  border-color: var(--green);
}

.board-location .map-dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 1px 5px 6px rgba(59, 239, 81, 0.7);
  flex-shrink: 0;
}

.board-location .loc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.board-location .loc-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.board-location .loc-sub {
  color: #b9bfc9;
  font-size: 12px;
}

.board-location .flag {
  font-size: 20px;
  flex-shrink: 0;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  background: var(--bg-gradient-blue);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 24px;
  box-shadow: var(--shadow-tile);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
  border: 2px solid var(--green);
  background: linear-gradient(180deg, rgba(45,178,98,0.03) 0%, #fff 30%);
}

.pricing-card .plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-mid);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.pricing-card .plan-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card .plan-price .currency {
  font-size: 24px;
  vertical-align: top;
  margin-right: 2px;
}

.pricing-card .plan-price .period {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card .plan-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8edf5;
}

.pricing-card .plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-card .plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

.pricing-card .plan-feature .checkmark {
  width: 7px;
  height: 14px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* ============================================
   FORM BLOCK — StormWall Gradient Form
   ============================================ */
.form-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.form-block {
  padding: 48px 42px;
  border-radius: var(--radius-card);
  background: var(--bg-gradient-form);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.form-block::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}

.form-block .form-inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.form-block .title-form {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.form-block .text-form {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
}

.form-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row .input-form {
  flex: 1;
}

.form-row input,
.sw-input {
  padding: 13px 16px;
  border-radius: var(--radius-input);
  font-size: 16px;
  background: var(--blue-bg-light);
  line-height: 1.3;
  height: 48px;
  width: 100%;
  border: none;
  outline: none;
  font-family: inherit;
  color: var(--text-dark);
  box-sizing: border-box;
}

.form-row input {
  background: #fff;
}

.form-row input::placeholder {
  color: #d1d5de;
}

.form-row input:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.form-block .small-text {
  color: #fff;
  font-size: 14px;
  margin-top: 12px;
}

.form-block .small-text a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--bg-gradient-cta);
  text-align: center;
  position: relative;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

.cta-section p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ============================================
   FOOTER — StormWall sw-footer
   ============================================ */
.footer {
  background: var(--bg-footer);
  color: #fff;
  padding: 80px 0 27px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
  margin-top: 16px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--green);
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--navy-mid);
  margin-bottom: 24px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column a, .footer-span {
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--green) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--blue-link);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--green);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================
   SCROLL TO TOP — StormWall
   ============================================ */
.scroll-to-top {
  right: 25px;
  width: 56px;
  bottom: 50px;
  cursor: pointer;
  height: 56px;
  opacity: 0;
  z-index: 5;
  position: fixed;
  transition: all 0.2s linear;
  border-radius: 50%;
  background-color: var(--green);
  display: none;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  display: flex;
  opacity: 0.5;
}

.scroll-to-top:hover {
  opacity: 1;
}

/* ============================================
   MOBILE
   ============================================ */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mobile-toggle span {
  background-color: var(--navy-input);
  width: 22px;
  height: 2px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
}

.mobile-overlay.active {
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 1200px) {
  .sw-title--page { font-size: 56px; }
  .sw-tile__step { font-size: 32px; padding: 8px 24px; }
  .sw-extra { font-size: 20px; }
}

@media (max-width: 1199px) {
  /* Menu collapses */
  .header-menu { display: none; }
  .header-logo { min-height: auto; padding: 13px 16px; }
  .header-body { width: 100%; }
  .mobile-toggle { display: flex; }

  .header-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    min-height: auto;
    padding: 16px;
  }

  .header-menu.active .menu {
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  .header-menu.active .menu-link {
    height: auto;
    padding: 17px 0;
    margin-left: 0;
    width: 100%;
  }

  .hero-title { font-size: 36px; }
  .hero-desc { font-size: 18px; }
  .section-title { font-size: 36px; }
  .card-block2 { flex-direction: column; align-items: center; }
  .card-type2 { width: 100%; max-width: 500px; min-height: auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .location-boards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .card-row { flex-wrap: wrap; }
  .card-type1 { flex: 1 1 calc(50% - 8px); }
  .map-header { flex-direction: column; gap: 16px; }
  .dark-card { flex-direction: column; padding: 32px; text-align: center; }
  .form-row { flex-direction: column; }
  .form-block { padding: 32px 24px; }
  .input-body { display: none; }
  .attack { display: none; }
}

/* ============================================
   Dropdown Menu Fixes
   ============================================ */
.products-down {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff !important;
  border-radius: 20px;
  box-shadow: 0 4px 27px rgba(23, 32, 53, 0.16);
  padding: 24px;
  display: flex;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
  pointer-events: none;
}

.menu-item-has-children {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

.menu-item-has-children .menu-link {
  height: 100%;
}

.menu-item-has-children:hover .products-down,
.menu-item-has-children.active .products-down {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu-item-has-children > a svg {
  transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a svg,
.menu-item-has-children.active > a svg {
  transform: rotate(180deg);
}

.drop-card {
  width: 280px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid transparent;
}

.drop-card:hover {
  background: #f8f9fc;
  border-color: rgba(60, 80, 110, 0.1);
}

.drop-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-card.bgp .drop-icon { background: rgba(45, 178, 98, 0.1); color: #2db262; }
.drop-card.gre .drop-icon { background: rgba(245, 166, 35, 0.1); color: #f5a623; }
.drop-card.web .drop-icon { background: rgba(59, 146, 235, 0.1); color: #3b92eb; }

.drop-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.drop-desc {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.4;
}

/* ============================================
   Product Page Styles
   ============================================ */

/* Header Override for Product Pages */
.product-page .header-logo,
.product-page .header-menu {
  background: transparent !important;
}

.product-page .header-brand,
.product-page .call-link,
.product-page .menu-link,
.product-page .enter-btn {
  color: var(--navy) !important;
}

.product-page .menu-link:hover,
.product-page .enter-btn:hover,
.product-page .call-link:hover {
  color: var(--green) !important;
}

.product-page .header-menu.menu-fixed {
  background: #fff !important;
}
   
/* Hero Variants */
.hero-product {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #f0f4f8 0%, #e0e9f3 100%);
  position: relative;
  overflow: hidden;
  margin-top: -120px; /* pull under the transparent header */
}

.hero-product .container {
  padding-top: 60px;
}

.hero-product .product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.hero-product.bgp .product-icon { background: rgba(45, 178, 98, 0.2); color: #2db262; }
.hero-product.bgp .hero-title span { color: #2db262; }
.hero-product.gre .product-icon { background: rgba(245, 166, 35, 0.2); color: #f5a623; }
.hero-product.gre .hero-title span { color: #f5a623; }
.hero-product.web .product-icon { background: rgba(59, 146, 235, 0.2); color: #3b92eb; }
.hero-product.web .hero-title span { color: #3b92eb; }

.hero-product .hero-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* Product Specific Horizontal Cards (sw-tile equivalent) */
.product-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-tile {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 27px rgba(23, 32, 53, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.product-tile .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 178, 98, 0.1);
}

.product-blue .product-tile .icon { background: rgba(59, 146, 235, 0.1); color: #3b92eb; }
.product-green .product-tile .icon { background: rgba(45, 178, 98, 0.1); color: #2db262; }
.product-gold .product-tile .icon { background: rgba(245, 166, 35, 0.1); color: #f5a623; }

.product-tile .title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

.product-tile .desc {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.4;
}

/* Risks Section */
.risks-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #09183b 0%, #1a3c7a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.risks-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 240px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
}

.risks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.risk-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.risk-card .risk-icon {
  margin-bottom: 20px;
}

.product-blue .risk-icon { color: #3b92eb; }
.product-green .risk-icon { color: #2db262; }
.product-gold .risk-icon { color: #f5a623; }

.risk-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 800;
}

.risk-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.risk-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.5;
}

.risk-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.product-blue .risk-list li::before { background: #3b92eb; }
.product-green .risk-list li::before { background: #2db262; }
.product-gold .risk-list li::before { background: #f5a623; }

/* What You Get Section */
.what-you-get {
  padding: 100px 0;
  background: #f4f7fb;
}

.wyg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.wyg-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 3px 19px rgba(60, 80, 110, 0.05);
}

.wyg-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-blue .wyg-icon { background: rgba(59, 146, 235, 0.1); color: #3b92eb; }
.product-green .wyg-icon { background: rgba(45, 178, 98, 0.1); color: #2db262; }
.product-gold .wyg-icon { background: rgba(245, 166, 35, 0.1); color: #f5a623; }

.wyg-text {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.4;
}

.product-blue .wyg-text strong { color: #3b92eb; }
.product-green .wyg-text strong { color: #2db262; }
.product-gold .wyg-text strong { color: #f5a623; }


@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 28px; }
  .cta-section h2 { font-size: 32px; }
  .button-row { flex-direction: column; }
  .button-row .btn { width: 100%; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .location-boards { grid-template-columns: 1fr; }
  .card-row { flex-direction: column; }
  .card-type1 { flex: 1 1 100%; }
  .product-stats-grid { grid-template-columns: 1fr; }
  .wyg-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
  .enter-right { display: none; }
}


/* VDS Horizontal Pricing Table */
.vds-table-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.vds-table-header {
    display: flex;
    background-color: var(--green); /* matches the site green */
    color: #fff;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vds-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vds-col-paket { flex: 1.5; }
.vds-col-cpu { flex: 2; }
.vds-col-ram { flex: 1.5; }
.vds-col-disk { flex: 1.5; }
.vds-col-trafik { flex: 1.5; }
.vds-col-fiyat { flex: 2; flex-direction: row; align-items: center; justify-content: space-between; }

.vds-table-row {
    display: flex;
    background-color: #fff;
    padding: 20px 24px;
    transition: background-color 0.3s ease;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.vds-table-row:last-child {
    border-bottom: none;
}

.vds-table-row:nth-child(even) {
    background-color: #fafafa;
}

.vds-table-row:hover {
    background-color: #f2f7fc;
}

.vds-table-row.featured {
    background-color: #fff9f5;
}

.vds-table-row.featured:hover {
    background-color: #fff0e6;
}

.vds-val {
    font-weight: 700;
    color: #111;
    font-size: 15px;
    margin-bottom: 6px;
}

.vds-sub {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

.vds-price-block {
    text-align: right;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.vds-price-discount {
    font-size: 11px;
    color: #e95420;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 700;
}

.vds-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--green);
}

.vds-price span {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.vds-table-btn {
    background-color: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    padding: 8px 24px;
    font-size: 14px;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.vds-table-btn:hover {
    background-color: var(--green);
    color: #fff;
}

.vds-table-row.featured .vds-table-btn {
    background-color: var(--green);
    color: #fff;
}

.vds-table-row.featured .vds-table-btn:hover {
    background-color: transparent;
    color: var(--green);
}

@media (max-width: 992px) {
    .vds-table-header { display: none; }
    .vds-table-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        border-top: 4px solid var(--green);
    }
    .vds-table-row.featured {
        border-top: 4px solid #e95420;
    }
    .vds-col {
        width: 100%;
        margin-bottom: 16px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .vds-col::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        color: #888;
    }
    .vds-col .vds-val, .vds-col .vds-sub {
        text-align: right;
    }
    .vds-col-fiyat {
        margin-bottom: 0;
        margin-top: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .vds-price-block {
        text-align: center;
        margin-right: 0;
        align-items: center;
    }
}


/* ===== HOSTING TABS ===== */
.hosting-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: -80px;
    margin-bottom: 40px;
    position: relative;
    z-index: 20;
}
.hosting-tab {
    background: #fff;
    border: 1px solid #eaeaea;
    color: #444;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.hosting-tab:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.hosting-tab.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    box-shadow: 0 8px 25px rgba(45,178,98,0.3);
}

/* ===== HOSTING CARDS ===== */
.hosting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.hosting-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}
.hosting-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.h-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}
.h-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-8px);
    border-color: rgba(45, 178, 98, 0.3);
}
.h-card-pop {
    border: 2px solid var(--green);
    box-shadow: 0 10px 30px rgba(45, 178, 98, 0.15);
}
.h-card-pop:hover {
    box-shadow: 0 20px 40px rgba(45, 178, 98, 0.2);
}
.h-pop-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(45, 178, 98, 0.3);
    white-space: nowrap;
    text-transform: uppercase;
}
.hc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(45, 178, 98, 0.1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.hc-title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.hc-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 40px;
}
.hc-price-box {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.hc-currency {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}
.hc-amount {
    font-size: 36px;
    font-weight: 900;
    color: #111;
    line-height: 1;
    letter-spacing: -1px;
}
.hc-period {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}
.hc-btn {
    display: block;
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}
.hc-btn-normal {
    background: #f1f5f9;
    color: #334155;
    text-decoration: none;
}
.hc-btn-normal:hover {
    background: #e2e8f0;
}
.hc-btn-pop {
    background: var(--green);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(45, 178, 98, 0.2);
}
.hc-btn-pop:hover {
    background: #259e56;
    box-shadow: 0 12px 25px rgba(45, 178, 98, 0.3);
}

.hc-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}
.hc-features li strong {
    color: #111;
    font-weight: 700;
}
.hc-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(45, 178, 98, 0.1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .hosting-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; margin-top: 20px; }
    .hosting-tabs { margin-top: -40px; }
}
@media (max-width: 600px) {
    .hosting-grid { grid-template-columns: 1fr; }
    .hosting-tabs { flex-direction: column; padding: 0 20px; }
    .hosting-tab { text-align: center; }
}


/* ===== COMPARISON TABLE ===== */
#karsilastirma {
    padding: 60px 0;
    background: #fdfdfd;
    border-top: 1px solid #eaeaea;
}
.comparison__table {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid #eaeaea;
}
.comparison__table .item__row {
    display: flex;
    border-bottom: 1px solid #eee;
}
.comparison__table .item__row:last-child {
    border-bottom: none;
}
.comparison__table .column-left {
    width: 25%;
    padding: 16px 24px;
    background: #fafafa;
    border-right: 1px solid #eee;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.comparison__table .column-right {
    width: 75%;
    display: flex;
}
.comparison__table .column-right .column {
    width: 25%;
    padding: 16px 12px;
    border-right: 1px solid #eee;
    text-align: center;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.comparison__table .column-right .column:last-child {
    border-right: none;
}
.comparison__table .item__header .column-right .column {
    flex-direction: column;
    padding: 30px 12px;
}
.comparison__table .p-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}
.comparison__table .price-tag {
    font-size: 24px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 20px;
}
.comparison__table .price-tag sub {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}
.comparison__table .btn-warning {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.comparison__table .btn-warning:hover {
    background: #259e56;
}
.comparison__table .item__row__split {
    background: #e8f7ed;
    color: var(--green);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
}
.comparison__table .fa-check {
    color: var(--green);
    font-size: 16px;
}
@media (max-width: 900px) {
    .comparison__table .column-left { width: 30%; font-size: 12px; padding: 12px; }
    .comparison__table .column-right { width: 70%; overflow-x: auto; }
    .comparison__table .column-right .column { min-width: 120px; font-size: 12px; padding: 12px 8px; }
    .comparison__table .price-tag { font-size: 18px; }
    .comparison__table .btn-warning { padding: 8px 12px; font-size: 12px; }
}

/* ===== Certificates & compliance modal ===== */
.tdc-cert-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    padding: 0 16px 8px;
}
.tdc-cert-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px !important;
    border-radius: 14px !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    box-shadow: 0 10px 28px rgba(45, 178, 98, 0.28) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
    border: none;
    cursor: pointer;
}
.tdc-cert-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(45, 178, 98, 0.35) !important;
}
.tdc-cert-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}
.tdc-cert-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.tdc-cert-dialog {
    position: relative;
    width: 100%;
    max-width: 920px;
    max-height: min(90vh, 880px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.28s ease;
}
.tdc-cert-modal.is-open .tdc-cert-dialog {
    transform: translateY(0) scale(1);
}
.tdc-cert-dialog-inner {
    overflow-y: auto;
    padding: 28px 28px 20px;
    flex: 1;
}
.tdc-cert-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: #f1f5f9;
    color: #475569;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.tdc-cert-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.tdc-cert-head {
    padding-right: 48px;
    margin-bottom: 22px;
}
.tdc-cert-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.25;
}
.tdc-cert-head p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.55;
    max-width: 52ch;
}
.tdc-cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (max-width: 640px) {
    .tdc-cert-grid {
        grid-template-columns: 1fr;
    }
}
.tdc-cert-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tdc-cert-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.tdc-cert-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tdc-cert-card-body {
    flex: 1;
    min-width: 0;
}
.tdc-cert-card-title {
    margin: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
}
.tdc-cert-card-desc {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.45;
}
.tdc-cert-view {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.tdc-cert-view:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #334155;
}
.tdc-cert-foot {
    text-align: center;
    padding: 16px 20px 20px;
    font-size: 0.75rem;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
    flex-shrink: 0;
}

/* ============================================
   MEGA MENU - Tabbed Style
   ============================================ */

.dropdown.has-mega-menu {
    position: relative;
}

.dropdown.has-mega-menu:hover .mega-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 800px;
    max-width: 900px;
    overflow: hidden;
}

.mega-menu-tabbed {
    min-height: 400px;
}

/* Sol Sidebar */
.mega-sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.mega-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mega-tab:hover,
.mega-tab.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-left-color: var(--green);
}

.mega-tab svg:first-child {
    flex-shrink: 0;
}

.mega-tab-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
}

.mega-tab-label small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 2px;
}

.mega-tab svg:last-child {
    flex-shrink: 0;
    opacity: 0.5;
}

.mega-tab:hover svg:last-child,
.mega-tab.active svg:last-child {
    opacity: 1;
}

/* Sağ İçerik */
.mega-content {
    flex: 1;
    padding: 30px;
    background: #fff;
}

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.mega-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.mega-header-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-deep);
    margin: 0 0 6px;
}

.mega-header-content span {
    font-size: 14px;
    color: #64748b;
}

.mega-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.mega-location-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-region {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.mega-location-group a {
    display: flex;
    align-items: center;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.mega-location-group a:hover {
    color: var(--green);
    padding-left: 4px;
}

.mega-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mega-panel-cta:hover {
    background: var(--navy);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        transform: none;
        min-width: auto;
        max-width: 100%;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown.has-mega-menu:hover .mega-menu {
        display: block;
    }
    
    .mega-menu-tabbed {
        flex-direction: column;
        min-height: auto;
    }
    
    .mega-sidebar {
        width: 100%;
        padding: 10px 0;
    }
    
    .mega-content {
        padding: 20px;
    }
    
    .mega-panel-grid {
        grid-template-columns: 1fr;
    }
}
