/* =====================================================
   ELLMAX WEB STUDIO — STRUCTURED CSS
   Исправлено: наслоение кнопок и преимуществ в hero-блоке
   ===================================================== */

:root {
  --bg: #060812;
  --panel: #0d101b;
  --panel-2: #141827;
  --text: #f5f7ff;
  --muted: #aeb7c9;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #e0b86e;
  --gold-2: #ffe0a4;
  --blue: #5a8cff;
  --cyan: #58f0ff;
  --radius: 22px;
  --font-main: 'Inter', sans-serif;
  --font-title: 'Playfair Display', serif;
}
body{
    user-select:none;
    -webkit-user-select:none;

    -webkit-touch-callout:none;
}

img{
    pointer-events:none;

    -webkit-user-drag:none;

    user-drag:none;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(90, 140, 255, 0.22), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(224, 184, 110, 0.13), transparent 34%),
    #03050b;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* =====================================================
   PAGE WRAPPER
   ===================================================== */

.page-shell {
  width: min(1500px, 96%);
  margin: 18px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 16, 27, 0.88), rgba(4, 6, 13, 0.97));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

/* =====================================================
   HEADER
   ===================================================== */

.header {
  position: relative;
  z-index: 10;
  height: 92px;
  padding: 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  font-family: var(--font-title);
  font-size: 31px;
  line-height: 1;
  letter-spacing: 7px;
  color: #ffffff;
  text-align: center;
}

.logo span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-main);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold-2);
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  color: var(--muted);
}

.nav a:hover,
.nav a.active {
  color: var(--gold-2);
}

.nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border: 1px solid rgba(224, 184, 110, 0.8);
  border-radius: 8px;
  font-size: 12px;
  color: var(--gold-2);
  text-transform: uppercase;
}

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;
  min-height: 660px;
  padding: 88px 54px 46px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at 74% 40%, rgba(88, 240, 255, 0.12), transparent 28%),
    radial-gradient(circle at 78% 42%, rgba(224, 184, 110, 0.18), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-2);
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(44px, 5.3vw, 82px);
  font-weight: 700;
  line-height: 1.04;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--gold);
}

.hero-text {
  max-width: 560px;
  margin: 28px 0 32px;
  font-size: 17px;
  color: #e8edf8;
}

/* =====================================================
   HERO BUTTONS — FIXED
   ===================================================== */

.hero-buttons {
  display: flex;
  align-items: stretch;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.gold-btn,
.ghost-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 15px 28px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gold-btn {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 36px rgba(224, 184, 110, 0.22);
  color: #11131b;
}

.ghost-btn {
  border: 1px solid rgba(224, 184, 110, 0.8);
  background: rgba(5, 8, 18, 0.45);
  color: var(--gold-2);
}

.gold-btn:hover,
.ghost-btn:hover {
  transform: translateY(-4px);
}

.gold-btn b,
.ghost-btn b {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}

/* =====================================================
   HERO IMAGE
   ===================================================== */

.hero-image {
  position: absolute;
  right: 18px;
  bottom: 30px;
  width: 54%;
  opacity: 1;
  pointer-events: none;

}

.hero-image img {
  width: 100%;
  height: 535px;
  margin-bottom: 140px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 35px 65px rgba(0, 0, 0, 0.65));
}

/* =====================================================
   HERO BADGES — FIXED: NO ABSOLUTE OVERLAP
   ===================================================== */

.hero-badges {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 22px;
  max-width: 900px;
}

.hero-badges article,
.features article {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-badges i,
.features i,
.category-card i {
  font-style: normal;
  color: var(--gold);
  font-size: 30px;
}

.hero-badges span {
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
}

/* =====================================================
   SECTIONS
   ===================================================== */

.section {
  padding: 34px 50px 52px;
  border-top: 1px solid var(--line);
}

.section-title {
  margin-bottom: 28px;
  text-align: center;
  text-transform: uppercase;
}

.section-title h2,
.split-section h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* =====================================================
   SERVICES / CATEGORIES
   ===================================================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 184, 110, 0.65);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #0f1422;
}

.category-card div {
  padding: 16px 12px 22px;
  text-align: center;
}

.category-card i {
  font-size: 15px;
  font-weight: 800;
}

.category-card h3 {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-card p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

/* =====================================================
   FEATURES
   ===================================================== */

/* =========================================
   CONTAINER
========================================= */

.container {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  padding-left: 24px;
  padding-right: 24px;

  box-sizing: border-box;
}

/* =========================================
   FEATURES
========================================= */

.features {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

  margin-top: 60px;
}

/* =========================================
   FEATURE CARD
========================================= */

.feature {
  position: relative;
  overflow: hidden;

  min-height: 260px;

  padding: 34px 32px;

  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(20, 28, 52, 0.96),
      rgba(5, 10, 24, 0.98)
    );

  border: 1px solid rgba(255,255,255,.08);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

/* =========================================
   HOVER
========================================= */

.feature:hover {
  transform: translateY(-8px);

  border-color: rgba(255,215,120,.18);

  box-shadow:
    0 25px 60px rgba(0,0,0,.45),
    0 0 40px rgba(255,210,120,.08);
}

/* =========================================
   GOLD GLOW
========================================= */

.feature::before {
  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,210,120,.10),
      transparent 70%
    );

  pointer-events: none;
}

/* =========================================
   ICON
========================================= */

.feature-icon {
  font-size: 75px;

  color: #f4c96b;

  margin-bottom: 38px;

  filter:
    drop-shadow(0 0 10px rgba(255,200,90,.35));
}

/* =========================================
   TITLE
========================================= */

.feature h3 {
  color: #f7d58c;

  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* =========================================
   TEXT
========================================= */

.feature p {
  font-size: 28px;
  max-width: 320px;

  color: #b8c0d4;

  font-size: 17px;
  line-height: 1.7;
}
.gold-line {
  width: 70px;
  height: 2px;

  margin-top: 18px;
  margin-bottom: 25px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #f8e2a8 0%,
      #e0b86e 45%,
      #ffd98c 100%
    );

  box-shadow:
    0 0 12px rgba(224,184,110,.45),
    0 0 24px rgba(224,184,110,.18);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .features {
    grid-template-columns: 1fr;

    margin-top: 40px;
  }

  .feature {
    min-height: auto;
  }

}

/* =====================================================
   PORTFOLIO / ABOUT
   ===================================================== */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card,
.bestsellers,
.process-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(90, 140, 255, 0.1), rgba(224, 184, 110, 0.055));
}

.about-card h2 {
  margin-bottom: 18px;
  font-family: var(--font-title);
  font-size: 40px;
  line-height: 1.12;
}

.about-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.mini-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mini-title a {
  font-size: 12px;
  color: var(--gold-2);
  text-transform: uppercase;
}

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

.product-row img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0f1422;
}



.portfolio-premium {
  padding: 90px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(224, 184, 110, .12), transparent 28%),
    radial-gradient(circle at 80% 40%, rgba(90, 140, 255, .12), transparent 30%),
    #030712;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.portfolio-top {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.portfolio-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  color: #f4c96b;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.portfolio-label::after {
  content: "";
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, #f8e2a8, #e0b86e);
}

.portfolio-top h2 {
  margin-bottom: 26px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.02;
}

.portfolio-top h2 span {
  color: #e0b86e;
}

.portfolio-top p {
  max-width: 620px;
  color: #b8c0d4;
  font-size: 18px;
  line-height: 1.7;
}

.portfolio-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
}

.portfolio-btn {
  padding: 18px 34px;
  border: 1px solid rgba(224,184,110,.7);
  border-radius: 8px;
  color: #f4c96b;
  text-transform: uppercase;
  font-weight: 700;
}

.video-btn {
  border: 0;
  background: transparent;
  color: #b8c0d4;
  text-transform: uppercase;
  cursor: pointer;
}

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(18px);
}

.portfolio-stats div {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.07);
}

.portfolio-stats div:last-child {
  border-right: 0;
}

.portfolio-stats b {
  display: block;
  color: #f4c96b;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 16px;
}

.portfolio-stats span {
  color: #c4cad8;
  font-size: 13px;
  text-transform: uppercase;
}

.portfolio-tabs {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.portfolio-tabs button {
  border: 0;
  background: transparent;
  color: #8f97aa;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
}

.portfolio-tabs .active {
  padding: 13px 20px;
  border: 1px solid rgba(224,184,110,.7);
  border-radius: 8px;
  color: #f4c96b;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 18px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: #0b1020;
  cursor: pointer;
  transition: .4s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224,184,110,.45);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: .7s ease;
  cursor: zoom-in;
}

.portfolio-card:hover img {
  transform: scale(1.06);
  filter: brightness(.75);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,7,18,.25), rgba(3,7,18,.95));
}

.portfolio-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-content span {
  color: #f4c96b;
  font-size: 24px;
  font-weight: 700;
}

.portfolio-content small {
  display: block;
  margin-top: 16px;
  color: #aeb7c9;
  text-transform: uppercase;
}

.portfolio-content h3 {
  margin-top: auto;
  margin-bottom: 22px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.15;
}

.portfolio-big .portfolio-content h3 {
  font-size: 44px;
}

.portfolio-content p {
  max-width: 330px;
  margin-bottom: 26px;
  color: #c4cad8;
  font-size: 16px;
  line-height: 1.6;
}

.portfolio-content button {
  width: fit-content;
  border: 1px solid rgba(224,184,110,.7);
  border-radius: 8px;
  padding: 14px 22px;
  background: rgba(3,7,18,.45);
  color: #f4c96b;
  text-transform: uppercase;
  cursor: pointer;
}

.portfolio-card:not(.portfolio-big) .portfolio-content button {
  border: 0;
  padding: 0;
  background: transparent;
}

.portfolio-big {
  grid-column: span 2;
}

.portfolio-card:nth-child(5),
.portfolio-card:nth-child(6),
.portfolio-card:nth-child(7) {
  min-height: 220px;
}

.portfolio-card:nth-child(7) {
  grid-column: span 2;
}

.portfolio-more {
  margin-top: 28px;
  text-align: center;
}

.portfolio-more a {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid rgba(224,184,110,.7);
  border-radius: 8px;
  color: #f4c96b;
  text-transform: uppercase;
  font-weight: 700;
}

/* FULLSCREEN IMAGE */

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px;

  opacity: 0;
  visibility: hidden;

  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);

  transition: 0.35s ease;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal img {
  max-width: 92vw;
  max-height: 88vh;

  object-fit: contain;

  border-radius: 18px;
  border: 1px solid rgba(224, 184, 110, 0.35);

  box-shadow:
    0 40px 120px rgba(0,0,0,.75),
    0 0 55px rgba(224,184,110,.18);
}

.modal-close {
  position: fixed;
  top: 26px;
  right: 32px;

  width: 48px;
  height: 48px;

  border-radius: 50%;
  border: 1px solid rgba(224,184,110,.45);

  background: rgba(10, 14, 25, .75);
  color: #fff;

  font-size: 34px;
  line-height: 1;

  cursor: pointer;
}

.modal-close:hover {
  color: #f4c96b;
}

/* ADAPTIVE */

@media (max-width: 1100px) {
  .portfolio-top {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-big,
  .portfolio-card:nth-child(7) {
    grid-column: span 2;
  }

  .portfolio-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .portfolio-premium {
    padding: 60px 0;
  }

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

  .portfolio-big,
  .portfolio-card:nth-child(7) {
    grid-column: auto;
  }

  .portfolio-card {
    min-height: 320px;
  }

  .portfolio-stats {
    grid-template-columns: 1fr;
  }

  .portfolio-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-tabs {
    justify-content: flex-start;
  }

  .portfolio-top h2 {
    font-size: 42px;
  }
}
/* =====================================================
   PROCESS
   ===================================================== */

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

.process-grid b {
  font-size: 28px;
  color: var(--gold);
}

.process-grid h3 {
  margin: 10px 0 8px;
  text-transform: uppercase;
}

.process-grid p {
  font-size: 14px;
  color: var(--muted);
}

/* =====================================================
   FEEDBACK PREMIUM
===================================================== */

.feedback-premium{
    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:
    radial-gradient(circle at 20% 10%,
    rgba(224,184,110,.10),
    transparent 28%),

    radial-gradient(circle at 80% 30%,
    rgba(90,140,255,.10),
    transparent 30%),

    #030712;
}

/* =====================================================
   CONTAINER
===================================================== */

.feedback-box{
    position:relative;

    z-index:2;

    display:grid;
    grid-template-columns:1fr 520px;

    gap:50px;

    padding:70px;

    border-radius:34px;

    background:
    linear-gradient(
      180deg,
      rgba(18,24,42,.96),
      rgba(6,10,20,.98)
    );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    0 35px 90px rgba(0,0,0,.55);
}

/* =====================================================
   LEFT
===================================================== */

.feedback-label{
    display:inline-flex;

    margin-bottom:26px;

    color:#f4c96b;

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;
}

.feedback-left h2{
    margin-bottom:28px;

    color:#fff;

    font-family:"Playfair Display", serif;

    font-size:clamp(42px,5vw,72px);

    line-height:1.05;
}

.feedback-left h2 span{
    color:#e0b86e;
}

.feedback-left p{
    max-width:620px;

    color:#b8c0d4;

    font-size:18px;

    line-height:1.8;
}

/* =====================================================
   ITEMS
===================================================== */

.feedback-items{
    display:grid;

    gap:22px;

    margin-top:42px;
}

.feedback-item{
    display:flex;

    align-items:flex-start;

    gap:18px;
}

.feedback-item i{
    width:52px;
    height:52px;

    flex-shrink:0;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
      135deg,
      #f8e2a8,
      #e0b86e
    );

    color:#11131b;

    font-size:20px;

    box-shadow:
    0 10px 25px rgba(224,184,110,.18);
}

.feedback-item b{
    display:block;

    margin-bottom:6px;

    color:#fff;

    font-size:17px;
}

.feedback-item span{
    color:#b8c0d4;

    font-size:15px;

    line-height:1.6;
}

/* =====================================================
   FORM
===================================================== */

.feedback-form{
    padding:42px;

    border-radius:28px;

    background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);
}

.form-title{
    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:30px;
}

.form-title i{
    width:58px;
    height:58px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
      135deg,
      #f8e2a8,
      #e0b86e
    );

    color:#11131b;

    font-size:22px;
}

.form-title h3{
    color:#fff;

    font-size:24px;

    margin-bottom:4px;
}

.form-title p{
    color:#9aa4bc;

    font-size:14px;
}

/* =====================================================
   INPUTS
===================================================== */

.input-group{
    position:relative;

    margin-bottom:18px;
}

.input-group i{
    position:absolute;

    top:20px;
    left:18px;

    color:#f4c96b;

    font-size:16px;
}

.input-group input,
.input-group textarea{
    width:100%;

    padding:18px 18px 18px 52px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:
    rgba(255,255,255,.03);

    color:#fff;

    font-size:15px;

    outline:none;

    transition:.3s ease;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:
    rgba(224,184,110,.5);

    box-shadow:
    0 0 25px rgba(224,184,110,.08);
}

.input-group textarea{
    min-height:160px;

    resize:none;
}

/* =====================================================
   BUTTON
===================================================== */

.feedback-btn{
    width:100%;
    height:66px;

    border:0;
    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    background:
    linear-gradient(
      135deg,
      #f8e2a8,
      #e0b86e
    );

    color:#11131b;

    font-size:14px;
    font-weight:800;

    letter-spacing:1px;

    cursor:pointer;

    transition:.35s ease;
}

.feedback-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 20px 45px rgba(224,184,110,.28);
}

.feedback-btn span{
    font-size:18px;
}

/* =====================================================
   PRIVACY
===================================================== */

.privacy-note{
    margin-top:22px;

    display:flex;
    align-items:center;
    gap:12px;

    color:#9aa4bc;

    font-size:13px;
}

.privacy-note i{
    color:#f4c96b;
}

/* =====================================================
   CONTACTS
===================================================== */

.feedback-contacts{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:28px;
}

.feedback-contacts div{
    display:flex;

    align-items:center;

    gap:18px;

    padding:24px;

    border-radius:22px;

    background:
    rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.06);
}

.feedback-contacts i{
    width:54px;
    height:54px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
      135deg,
      #f8e2a8,
      #e0b86e
    );

    color:#11131b;

    font-size:20px;
}

.feedback-contacts b{
    display:block;

    margin-bottom:5px;

    color:#fff;

    font-size:16px;
}

.feedback-contacts span{
    color:#9aa4bc;

    font-size:13px;
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:980px){

    .feedback-box{
        grid-template-columns:1fr;

        padding:34px 24px;
    }

    .feedback-form{
        padding:26px;
    }

    .feedback-contacts{
        grid-template-columns:1fr;
    }

}

@media(max-width:640px){

    .feedback-premium{
        padding:70px 0;
    }

    .feedback-left h2{
        font-size:42px;
    }

    .feedback-left p{
        font-size:15px;
    }

}

/* MOBILE */

@media(max-width:980px){

    .feedback-box{
        grid-template-columns:1fr;

        padding:36px 24px;
    }

    .feedback-form{
        padding:26px;
    }

}

@media(max-width:640px){

    .feedback-premium{
        padding:70px 0;
    }

    .feedback-left h2{
        font-size:42px;
    }

    .feedback-left p{
        font-size:15px;
    }

}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  padding: 34px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.footer p {
  font-size: 14px;
  color: var(--muted);
}

/* =====================================================
   WHATSAPP BUTTON
   ===================================================== */

.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-weight: 800;
}

.whatsapp-btn::before {
  content: '☎';
  margin-right: 8px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.fade-down {
  animation: fadeDown 0.8s ease both;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1100px) {
  .nav{
    position: fixed;

    top: 72px;
    left: 0;
    right: 0;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    padding: 24px;

    background: #060812;

    border-bottom: 1px solid rgba(224,184,110,.25);

    transform: translateY(-120%);

    opacity: 0;
    visibility: hidden;

    transition: .35s ease;
  }

  .nav.active{
    transform: translateY(0);

    opacity: 1;
    visibility: visible;
  }

  .burger {
    display: block;
    order: -1;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-actions .outline-btn {
    display: none;
  }

  .hero {
    display: block;
    min-height: 720px;
    padding: 52px 28px 315px;
  }

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

  .hero h1 {
    font-size: clamp(38px, 7vw, 58px);
    line-height: 1.13;
  }

  .hero-text {
    max-width: 430px;
    margin: 20px 0 24px;
  }

  .hero-buttons {
    margin-top: 24px;
  }

  .hero-image {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 330px;
  }

  .hero-image img {
    width: 100%;
    height: 330px;
    object-position: center bottom;
  }

  .hero-badges {
    display: none;
  }

  .category-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .category-card {
    min-width: 190px;
    scroll-snap-align: start;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .burger.active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2){
  opacity: 0;
}

.burger.active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.burger span{
  transition:.3s ease;
}
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .header {
    height: 72px;
    padding: 0 18px;
  }

  .logo {
    font-size: 22px;
    letter-spacing: 3.5px;
  }

  .logo span {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .hero {
    min-height: 635px;
    padding: 34px 20px 275px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

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

  .hero-text {
    max-width: 340px;
    margin: 16px 0 20px;
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .gold-btn,
  .ghost-btn {
    width: 100%;
    min-height: 48px;
    padding: 13px 20px;
    font-size: 11px;
  }

  .hero-image {
    height: 280px;
  }

  .hero-image img {
    height: 280px;
  }

  .section {
    padding: 28px 16px;
  }

  .section-title h2 {
    font-size: 17px;
  }

  .category-card {
    min-width: 150px;
  }

 .category-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #0f1422;
}

  .category-card div {
    padding: 12px 8px 14px;
  }

  .category-card h3 {
    font-size: 12px;
  }

  .category-card p {
    font-size: 11px;
  }

  .features{
    width:100%;

    display:grid;
    grid-template-columns:1fr;

    gap:18px;

    margin:34px 0 10px;

    padding:0;
  }

  .feature{
    width:100%;

    min-height:auto;

    padding:30px 24px;

    border-radius:24px;
  }

  .feature h3{
    font-size:18px;
    line-height:1.3;
  }

  .feature p{
    max-width:100%;

    font-size:15px;
    line-height:1.7;
  }

  .feature-icon{
    font-size:56px;

    margin-bottom:28px;
  }

  .features article {
    padding-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .features article:last-child {
    border-bottom: 0;
  }

  .split-section,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-card,
  .bestsellers,
  .process-grid article {
    padding: 22px;
  }

  .about-card h2 {
    font-size: 30px;
  }

  .product-row img {
    height: 135px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 20px;
  }

  .whatsapp-btn {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-btn::before {
    margin: 0;
  }

  .whatsapp-btn span {
    display: none;
  }
  .portfolio-stats{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:0;
}

.portfolio-stats div{
    min-height:140px;

    padding:26px 20px;

    border-right:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.portfolio-stats div:nth-child(2n){
    border-right:0;
}

.portfolio-stats div:nth-last-child(-n+2){
    border-bottom:0;
}

.portfolio-stats b{
    font-size:42px;
}

.portfolio-stats span{
    font-size:12px;
    line-height:1.5;
}
}
