* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  color: #1e293b;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 100px 0;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero p {
  max-width: 600px;
  margin: 20px 0 30px;
  opacity: 0.9;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section.light {
  background: #f8fafc;
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.section-desc {
  max-width: 700px;
  margin-bottom: 50px;
  color: #475569;
}

/* GRID */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}

/* CTA */
.cta {
  background: #0f172a;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  background: #e5e7eb;
  color: #0f172a;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

/* CONTACT */
.contact-form {
  max-width: 600px;
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #cbd5f5;
  border-radius: 8px;
}

/* FOOTER */
.footer {
  background: #020617;
  color: #94a3b8;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


/* NAV BASE */
.nav {
  /*display: flex;*/
  gap: 30px;
  align-items: center;
}

.nav a,
.nav-link {
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 8px;
}

/* MEGA MENU */
.mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  width: 100vw;
  max-width: 1100px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  padding: 40px;
  display: none;
  z-index: 999;
}

.mega:hover .mega-menu {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.mega-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #0f172a;
}

.mega-col a {
  display: block;
  margin-bottom: 10px;
  color: #475569;
  font-size: 14px;
  text-decoration: none;
}

.mega-col a:hover {
  color: #2563eb;
}

/* HIGHLIGHT COLUMN */
.mega-col.highlight {
  background: #f1f5f9;
  padding: 25px;
  border-radius: 12px;
}

.mega-col.highlight p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #334155;
}

/* BUTTON SMALL */
.btn.small {
  padding: 10px 18px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {

  .mega:hover .mega-menu {
    display: none;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 20px 0;
  }

  .mega.open .mega-menu {
    display: block;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }
}


/* HERO BASE */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #020617;
}

/* GRADIENT BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,0.25), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(14,165,233,0.2), transparent 45%),
    linear-gradient(180deg, #020617 0%, #0f172a 100%);
  z-index: 1;
}

/* PATTERN OVERLAY (DETAYSOFT STYLE) */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero p {
  font-size: 18px;
  max-width: 650px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #93c5fd;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(147,197,253,0.25);
  border-radius: 999px;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }
}


.corporate-stats {
  padding: 140px 0;
  background: #f8fafc;
}

.stats-header {
  max-width: 700px;
  margin-bottom: 90px;
}

.stats-header h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #0f172a;
}

.stats-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px 40px;
}

/* ITEM */
.stat-item {
  border-top: 2px solid #e2e8f0;
  padding-top: 28px;
}

.stat-item strong {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  display: block;
  margin-bottom: 10px;
}

.stat-item span {
  font-size: 16px;
  font-weight: 600;
  color: #2563eb;
  display: block;
  margin-bottom: 12px;
}

.stat-item p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .corporate-stats {
    padding: 100px 0;
  }

  .stats-header h2 {
    font-size: 30px;
  }

  .stat-item strong {
    font-size: 34px;
  }
}

.sap-stats {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(0,90,160,0.15), transparent 40%),
    linear-gradient(180deg, #0b1220, #0f172a);
  color: #fff;
}

.sap-stats .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.stats-header .badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  background: rgba(0,90,160,0.15);
  border: 1px solid rgba(0,90,160,0.4);
  border-radius: 999px;
  margin-bottom: 16px;
}

.stats-header h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
    color: white;

}

.stats-header p {
  color: #cbd5e1;
  font-size: 17px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,140,255,0.5);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 12px;
}

.stat-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 15px;
  color: #cbd5e1;
}

.stat-card.highlight {
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  border: none;
}

.stat-card.highlight .stat-number,
.stat-card.highlight h4,
.stat-card.highlight p {
  color: #fff;
}

.rd-center {
  padding: 140px 0;
  background:
    linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  color: #fff;
}

.rd-center .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.rd-intro {
  max-width: 720px;
  margin-bottom: 80px;
}

.rd-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .08em;
  background: rgba(0,140,255,0.12);
  border: 1px solid rgba(0,140,255,0.4);
  margin-bottom: 18px;
}

.rd-intro h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.rd-intro p {
  font-size: 18px;
  color: #cbd5e1;
}

.rd-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 90px;
}

.rd-story p {
  font-size: 17px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 22px;
}

.rd-focus {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.focus-line {
  display: flex;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.focus-line span {
  font-size: 22px;
  font-weight: 600;
  color: #38bdf8;
  min-width: 36px;
}

.focus-line strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.focus-line p {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
}

.rd-signature {
  border-left: 4px solid #38bdf8;
  padding-left: 28px;
  max-width: 820px;
}

.rd-signature h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.rd-signature p {
  font-size: 17px;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 900px) {
  .rd-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .rd-intro h2 {
    font-size: 34px;
  }
}

.industries-enterprise {
  padding: 140px 0;
  background: #ffffff;
  color: #000000;
}

.industries-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.industries-header h2 {
  font-size: 42px;
  margin-bottom: 14px;
}

.industries-header p {
  font-size: 18px;
}

.industries-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

/* LEFT */
.industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-list li {
  padding: 18px 0;
  font-size: 18px;
  cursor: pointer;
  border-left: 3px solid transparent;
  padding-left: 18px;
  transition: all .3s ease;
}

.industry-list li.active,
.industry-list li:hover {
  color: #000000b5;
  border-color: #38bdf8;
}

/* RIGHT */
.industry-visual {
  position: relative;
  height: 420px;
}

.industry-panel {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .6s ease;
}

/* Example backgrounds */
#manufacturing { background-image: url("images/industry-manufacturing.jpg"); }
#retail { background-image: url("images/industry-retail.jpg"); }
#energy { background-image: url("images/industry-energy.jpg"); }
#finance { background-image: url("images/industry-finance.jpg"); }
#logistics { background-image: url("images/industry-logistics.jpg"); }

.industry-panel.active {
  opacity: 1;
  transform: scale(1);
}

.industry-panel .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 18, 32, 0.301),
    rgba(11, 18, 32, 0.163)
  );
}

.industry-panel .content {
  position: relative;
  z-index: 2;
  max-width: 420px;
  padding: 60px;
}

.industry-panel h3 {
  font-size: 28px;
  margin-bottom: 14px;
  color: white;
}

.industry-panel p {
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .industries-layout {
    grid-template-columns: 1fr;
  }

  .industry-visual {
    height: 320px;
  }
}

.why-solvium {
  padding: 140px 0;
  background: #ffffff;
  color: #0f172a;
}

.why-solvium .container {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.why-header {
  max-width: 640px;
  margin-bottom: 80px;
}

.why-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.why-header p {
  font-size: 18px;
  color: #475569;
}

.why-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
}

/* Manifest */
.why-manifest p {
  font-size: 17px;
  line-height: 1.75;
  color: #1e293b;
  margin-bottom: 22px;
}

/* Pillars */
.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.pillar span {
  font-size: 13px;
  letter-spacing: .12em;
  color: #0ea5e9;
  font-weight: 600;
}

.pillar h3 {
  font-size: 22px;
  margin: 6px 0 10px;
}

.pillar p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}


.case-experience {
  padding: 140px 0;
  background: #f8fafc;
}

.case-experience .container {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

/* Header */
.case-header {
  max-width: 720px;
  margin-bottom: 90px;
}

.case-header h2 {
  font-size: 42px;
  margin-bottom: 14px;
  color: #0f172a;
}

.case-header p {
  font-size: 18px;
  color: #475569;
}

/* Timeline */
.case-timeline {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-bottom: 110px;
}

.case-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  padding-left: 40px;
  border-left: 2px solid #e2e8f0;
}

.case-meta h3 {
  font-size: 24px;
  margin-top: 10px;
  color: #020617;
}

.case-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  color: #0ea5e9;
  font-weight: 600;
}

.case-desc p {
  font-size: 16px;
  line-height: 1.7;
  color: #1e293b;
  margin-bottom: 16px;
}

.case-desc ul {
  padding-left: 18px;
  color: #475569;
}

.case-desc li {
  margin-bottom: 8px;
}

.case-trust {
  border-top: 1px solid #e2e8f0;
  padding-top: 50px;
  text-align: center;
  overflow: hidden;
}

.case-trust p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 30px;
}

/* Slider */
.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 70px;
  animation: scrollLogos 40s linear infinite;
}

.logo-track img {
  height: 42px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity .3s ease;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.enterprise-cta {
  padding: 140px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(14,165,233,.08), transparent 40%),
    linear-gradient(180deg, #020617, #020617);
  color: #fff;
}

.cta-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: center;
}

.cta-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #93c5fd;
}

.cta-content h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #9db2f7;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.cta-btn {
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .35s ease;
}

.cta-btn.primary {
  background: #2563eb;
  color: #fff;
}

.cta-btn.primary:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

.cta-btn.secondary {
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
}

.cta-btn.secondary:hover {
  border-color: #93c5fd;
}

/* Right metrics */
.cta-visual {
  display: grid;
  gap: 26px;
}

.cta-metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.cta-metric strong {
  display: block;
  font-size: 34px;
  color: #93c5fd;
  margin-bottom: 6px;
}

.cta-metric span {
  font-size: 14px;
  color: #cbd5f5;
}

/* Mobile */
@media(max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-content h2 {
    font-size: 34px;
  }
}

.final-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: white;
  color: #000000;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  opacity: 0.25;
}

@keyframes gridMove {
  from { transform: translateY(0); }
  to { transform: translateY(-60px); }
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  z-index: 2;
}

.cta-eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  color: #6ec1ff;
}

.final-cta h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 16px 0;
}

.final-cta h2 span {
  color: #6ec1ff;
}

.cta-points {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.cta-points li {
  margin-bottom: 10px;
  opacity: 0.9;
}

.cta-box {
  background: #11192775;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 18px;
}

.cta-box h4 {
  margin-bottom: 20px;
}

.cta-box select {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: none;
}

.cta-btn {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #6ec1ff, #4aa3ff);
  color: #000;
  padding: 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

.cta-note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.7;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-premium {
  padding: 140px 0;
  background: linear-gradient(180deg, #050b17c3, #0b163085);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}

.contact-eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #6ec1ff;
}

.contact-premium h2 {
  font-size: 42px;
  line-height: 1.2;
  margin: 16px 0;
}

.contact-premium h2 span {
  color: #6ec1ff;
}

.contact-trust {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.contact-trust li {
  margin-bottom: 10px;
  opacity: 0.9;
}

.contact-form-wrapper {
  background: #02091cc2;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 50px;
}

.contact-form-premium .field {
  position: relative;
  margin-bottom: 26px;
}

.contact-form-premium input,
.contact-form-premium textarea,
.contact-form-premium select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 14px;
  color: #000000;
  border-radius: 10px;
  outline: none;
}

.contact-form-premium label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.6;
  pointer-events: none;
  transition: 0.3s ease;
  padding: 0 6px;
}

.contact-form-premium input:focus + label,
.contact-form-premium input:valid + label,
.contact-form-premium textarea:focus + label,
.contact-form-premium textarea:valid + label,
.contact-form-premium select:focus + label,
.contact-form-premium select:valid + label {
  top: -8px;
  font-size: 12px;
  opacity: 1;
  color: #6ec1ff;
}

.contact-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #6ec1ff, #4aa3ff);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

.contact-note {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.7;
}
.enterprise-footer {
  background: #050b17;
  color: #cfd6e4;
  padding-top: 100px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 80px;
}

.footer-brand h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

.sap-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  background: rgba(110,193,255,0.15);
  color: #6ec1ff;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-col ul li:hover {
  opacity: 1;
  color: #6ec1ff;
}

.footer-mail {
  font-weight: 500;
  margin-top: 12px;
}

.footer-location {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-grid {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


.footer-col ul li a {
  color: #cfd6e4;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #6ec1ff;
  padding-left: 4px;
}
.footer-mail a {
  color: #6ec1ff;
  text-decoration: none;
}


/* =========================
   GLOBAL MOBILE FIXES
========================= */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding: 60px 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* =========================
   CASE STUDIES
========================= */
@media (max-width: 768px) {

  .case-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .case-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .case-meta h3 {
    font-size: 20px;
  }

  .case-desc ul {
    padding-left: 18px;
  }
}

/* =========================
   ENTERPRISE CTA (ORTA BÖLÜM)
========================= */
@media (max-width: 768px) {

  .enterprise-cta {
    padding: 80px 0;
  }

  .cta-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 14px;
  }

  .cta-actions a {
    width: 100%;
    text-align: center;
  }

  .cta-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-metric {
    text-align: center;
  }
}

/* =========================
   FINAL CTA
========================= */
@media (max-width: 768px) {

  .final-cta .cta-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  .cta-points {
    padding-left: 0;
  }

  .cta-action {
    width: 100%;
  }

  .cta-box {
    width: 100%;
    padding: 24px;
  }

  .cta-box select,
  .cta-box .cta-btn {
    width: 100%;
  }
}

/* =========================
   CONTACT SECTION
========================= */
@media (max-width: 768px) {

  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 30px;
  }

  .contact-form-wrapper {
    width: 100%;
  }

  .contact-form-premium {
    padding: 0;
  }

  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   SMALL DEVICES (IPHONE SE VS)
========================= */
@media (max-width: 480px) {

  h2 {
    font-size: 26px;
  }

  .cta-content h2,
  .contact-info h2 {
    font-size: 26px;
  }

  p {
    font-size: 14px;
  }
}
