/* ======================================================
   MuftiMedia Landing Page
   File: assets/css/style.css
   ====================================================== */

:root {
  --dark: #05070d;
  --dark-soft: #0a0f1c;
  --dark-card: rgba(15, 23, 42, 0.82);
  --white: #ffffff;
  --muted: #aab4c8;
  --text: #eaf0ff;
  --gold: #d6a85a;
  --gold-light: #f3d69b;
  --coffee: #8a5b2d;
  --cyan: #22d3ee;
  --blue: #38bdf8;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: 0.3s ease;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(214, 168, 90, 0.12), transparent 28%),
    var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 105px 0;
  position: relative;
}

.page-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.page-glow-1 {
  top: 80px;
  left: -120px;
  background: var(--cyan);
}

.page-glow-2 {
  bottom: 40px;
  right: -120px;
  background: var(--gold);
}

/* ======================================================
   Buttons
   ====================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #16100a;
  box-shadow: 0 14px 30px rgba(214, 168, 90, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(214, 168, 90, 0.34);
}

.btn-outline {
  color: var(--white);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: rgba(34, 211, 238, 0.65);
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  transform: translateY(-3px);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

/* ======================================================
   Header / Navbar
   ====================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 24px;
  color: var(--white);
}

.brand span span {
  color: var(--gold);
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #171008;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 12px 30px rgba(214, 168, 90, 0.25);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 21px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

.hamburger.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* ======================================================
   Hero
   ====================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 999px;
}

.hero h1,
.section-heading h2,
.feature-content h2,
.about-content h2,
.cta-box h2,
.contact-content h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: 760px;
  margin-bottom: 24px;
}

.hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats div {
  min-width: 128px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.dashboard-card {
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(15, 23, 42, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: perspective(1000px) rotateY(-7deg) rotateX(4deg);
  transition: var(--transition);
}

.dashboard-card:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-6px);
}

.dashboard-top {
  height: 62px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
}

.window-dots span:nth-child(2) {
  background: var(--cyan);
}

.window-dots span:nth-child(3) {
  background: #93c5fd;
}

.dashboard-url {
  flex: 1;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 84px 1fr;
  min-height: 390px;
}

.dashboard-sidebar {
  padding: 22px 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.dashboard-sidebar span {
  height: 42px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-sidebar span:first-child {
  background: linear-gradient(135deg, rgba(214, 168, 90, 0.8), rgba(34, 211, 238, 0.6));
}

.dashboard-main {
  padding: 22px;
}

.chart-card {
  min-height: 210px;
  border-radius: 24px;
  padding: 22px;
  background: rgba(5, 7, 13, 0.42);
  border: 1px solid var(--border);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.chart-header span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.chart-header strong {
  color: var(--cyan);
  font-size: 22px;
}

.chart-bars {
  height: 120px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.chart-bars span {
  flex: 1;
  min-width: 22px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--cyan), rgba(214, 168, 90, 0.86));
  box-shadow: 0 12px 26px rgba(34, 211, 238, 0.16);
  animation: barMove 2.8s ease-in-out infinite alternate;
}

.chart-bars span:nth-child(2n) {
  animation-delay: 0.4s;
}

@keyframes barMove {
  from {
    transform: scaleY(0.88);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.mini-card {
  min-height: 92px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mini-card i {
  color: var(--gold-light);
  font-size: 22px;
}

.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid var(--border);
  background: rgba(5, 7, 13, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.floating-badge i {
  color: var(--gold-light);
}

.badge-1 {
  top: 48px;
  right: -12px;
  animation: floatY 4s ease-in-out infinite;
}

.badge-2 {
  left: -18px;
  bottom: 52px;
  animation: floatY 4s ease-in-out infinite reverse;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}

/* ======================================================
   Section Heading
   ====================================================== */

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-heading h2,
.feature-content h2,
.about-content h2,
.cta-box h2,
.contact-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

.section-heading p,
.feature-content p,
.about-content p,
.cta-box p,
.contact-content p {
  color: var(--muted);
  font-size: 16px;
}

/* ======================================================
   Cards
   ====================================================== */

.card-grid {
  display: grid;
  gap: 22px;
}

.service-grid,
.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.portfolio-card,
.panel-card,
.contact-form,
.about-box {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--dark-card);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.service-card,
.portfolio-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 38%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover,
.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 168, 90, 0.42);
}

.service-card:hover::before,
.portfolio-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #171008;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  margin-bottom: 22px;
  font-size: 23px;
  position: relative;
  z-index: 1;
}

.service-card h3,
.portfolio-card h3,
.panel-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p,
.portfolio-card p,
.panel-card p {
  color: var(--muted);
  font-size: 15px;
  position: relative;
  z-index: 1;
}

/* ======================================================
   Features
   ====================================================== */

.feature-section {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: var(--text);
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.feature-item i {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #171008;
  background: var(--gold-light);
  font-size: 12px;
  margin-top: 2px;
}

.feature-panel {
  display: grid;
  gap: 22px;
}

.panel-card {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.panel-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.18);
  margin-bottom: 20px;
  font-size: 24px;
}

/* ======================================================
   Portfolio
   ====================================================== */

.portfolio-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.portfolio-top span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-top i {
  color: var(--cyan);
  font-size: 24px;
}

.portfolio-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-weight: 800;
  margin-top: 22px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.portfolio-card a:hover {
  gap: 14px;
  color: var(--cyan);
}

/* ======================================================
   About
   ====================================================== */

.about-section {
  background:
    radial-gradient(circle at left, rgba(214, 168, 90, 0.09), transparent 30%),
    rgba(255, 255, 255, 0.02);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-box {
  width: min(100%, 420px);
  min-height: 420px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.15);
  filter: blur(40px);
  top: -60px;
  right: -70px;
}

.about-logo {
  width: 110px;
  height: 110px;
  border-radius: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #171008;
  font-size: 48px;
  margin-bottom: 26px;
  box-shadow: 0 20px 45px rgba(214, 168, 90, 0.28);
  position: relative;
  z-index: 1;
}

.about-box h3 {
  font-size: 32px;
  letter-spacing: -0.05em;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.about-box p {
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.about-content p + p {
  margin-top: 14px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.about-points div {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.about-points strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.about-points span {
  color: var(--muted);
  font-size: 13px;
}

/* ======================================================
   CTA
   ====================================================== */

.cta-section {
  padding: 60px 0;
}

.cta-box {
  border: 1px solid rgba(214, 168, 90, 0.25);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(214, 168, 90, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(15, 23, 42, 0.82);
  border-radius: 34px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
}

/* ======================================================
   Contact
   ====================================================== */

.contact-section {
  padding-top: 80px;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.contact-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #171008;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  font-size: 19px;
}

.contact-item strong {
  display: block;
  color: var(--white);
  line-height: 1.4;
}

.contact-item span {
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  outline: none;
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(170, 180, 200, 0.72);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.form-group select option {
  background: #0f172a;
  color: var(--white);
}

/* ======================================================
   Footer
   ====================================================== */

.footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 34px;
  margin-bottom: 34px;
}

.footer-about p {
  color: var(--muted);
  margin-top: 16px;
  max-width: 520px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 17px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.social-icons a:hover {
  color: #171008;
  background: var(--gold-light);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

/* ======================================================
   Reveal Animation
   ====================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   Responsive
   ====================================================== */

@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero p,
  .hero h1 {
    margin-inline: auto;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .dashboard-card {
    transform: none;
  }

  .dashboard-card:hover {
    transform: translateY(-6px);
  }

  .service-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-content,
  .about-content,
  .contact-content {
    text-align: left;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(5, 7, 13, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    display: grid;
    gap: 8px;
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 13px 15px;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-action .btn {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 130px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    font-size: 21px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 16px;
  }

  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-badge {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    animation: none;
  }

  .service-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 28px;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 35px;
  }

  .section-heading h2,
  .feature-content h2,
  .about-content h2,
  .cta-box h2,
  .contact-content h2 {
    font-size: 31px;
  }

  .dashboard-top {
    padding: 0 14px;
  }

  .dashboard-url {
    font-size: 12px;
  }

  .chart-bars {
    gap: 8px;
  }
}