/* =============================================
   SEITE.INK — Custom Stylesheet
   AI Smart Home Solutions — Germany
   ============================================= */

:root {
  --clr-bg:       #0a0e1a;
  --clr-bg2:      #0f1526;
  --clr-bg3:      #131929;
  --clr-accent:   #4fc3f7;
  --clr-accent2:  #81d4fa;
  --clr-gold:     #c9a84c;
  --clr-gold2:    #e8c96e;
  --clr-text:     #e2e8f4;
  --clr-muted:    #8a97b0;
  --clr-border:   #1e2a40;
  --clr-card:     #111827;
  --clr-white:    #ffffff;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.6);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:    'Josefin Sans', sans-serif;
  --font-body:    'Lora', serif;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--clr-white);
}

p { color: var(--clr-text); font-size: 17px; }

a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold2); }

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

section { padding: 90px 0; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-accent); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-custom {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--clr-border);
  padding: 14px 0;
  transition: all var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-white) !important;
}

.navbar-brand-text span {
  color: var(--clr-accent);
}

.nav-link-custom {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted) !important;
  padding: 8px 16px !important;
  transition: color var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--clr-accent) !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  color: var(--clr-bg) !important;
  border-radius: 8px;
  padding: 8px 22px !important;
  font-weight: 700;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--clr-gold2), var(--clr-gold));
  color: var(--clr-bg) !important;
}

.navbar-toggler {
  border: 1px solid var(--clr-border);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAOklEQVQoz2NgGAWDCvz/z8BACqah/pkhbOQ2CuIAEWMdUAIJFQYCoAyYxqA8GhJoGIj6pAjCIAABBgAItAF1B3KlUQAAAABJRU5ErkJggg==");
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #050810 0%, #0a1628 50%, #04111f 100%);
  padding-top: 0;
  padding-bottom: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  border-radius: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,14,26,0.98) 40%, rgba(10,14,26,0.5) 100%);
}

.hero-content { position: relative; z-index: 2; padding: 60px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 195, 247, 0.1);
  border: 1px solid rgba(79, 195, 247, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .accent-line {
  display: block;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--clr-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  color: #050810 !important;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 15px 36px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(79, 195, 247, 0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(79, 195, 247, 0.5);
  background: linear-gradient(135deg, #81d4fa, #4fc3f7);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--clr-text) !important;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  padding: 14px 30px;
  transition: all var(--transition);
}

.btn-hero-secondary:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent) !important;
  background: rgba(79, 195, 247, 0.05);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--clr-border);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-accent);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--clr-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-float-card.card-1 { bottom: 60px; left: -36px; }
.hero-float-card.card-2 { top: 40px; right: -30px; }

.float-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-bg);
  flex-shrink: 0;
}

.float-icon.gold { background: linear-gradient(135deg, var(--clr-gold2), var(--clr-gold)); }

.float-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.float-value {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 18px;
}

.section-desc {
  color: var(--clr-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.divider-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--clr-bg2); }

.about-img-wrap { position: relative; }

.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  color: #050810;
}

.about-badge-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
}

.about-badge-txt {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(79, 195, 247, 0.1);
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.about-feature-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--clr-bg); }

.service-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(79, 195, 247, 0.25); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid rgba(79, 195, 247, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-accent);
  margin-bottom: 24px;
}

.service-icon.gold-icon {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.15);
  color: var(--clr-gold);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: var(--clr-white);
}

.service-text { color: var(--clr-muted); font-size: 0.95rem; line-height: 1.75; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-section { background: var(--clr-bg2); }

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.process-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #050810;
}

.process-step-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.process-step-text { color: var(--clr-muted); font-size: 0.96rem; }

.process-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ============================================================
   FEATURES / TECH SECTION
   ============================================================ */
.features-section { background: var(--clr-bg3); }

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

.feature-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: rgba(79, 195, 247, 0.3);
  background: rgba(17, 24, 39, 0.9);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--clr-accent);
  margin-bottom: 14px;
  display: block;
}

.feature-item h5 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--clr-white);
}

.feature-item p { font-size: 0.88rem; color: var(--clr-muted); margin: 0; }

.tech-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ============================================================
   GALLERY / PROJECTS SECTION
   ============================================================ */
.gallery-section { background: var(--clr-bg); }

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
  cursor: pointer;
}

.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.gallery-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.gallery-card:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.95) 0%, transparent 100%);
  padding: 30px 22px 22px;
}

.gallery-tag {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 6px;
}

.gallery-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--clr-bg2); }

.testimonial-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.stars { color: var(--clr-gold); font-size: 0.9rem; margin-bottom: 20px; }

.testimonial-text {
  font-size: 1rem;
  color: var(--clr-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border);
}

.author-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.05em;
}

.author-location { font-size: 0.8rem; color: var(--clr-muted); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--clr-bg3); }

.accordion-custom .accordion-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-custom .accordion-button {
  background: var(--clr-card);
  color: var(--clr-white);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 22px 28px;
  box-shadow: none !important;
  border-radius: var(--radius) !important;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: rgba(79, 195, 247, 0.05);
  color: var(--clr-accent);
}

.accordion-custom .accordion-button::after {
  filter: brightness(2);
}

.accordion-custom .accordion-body {
  background: var(--clr-card);
  color: var(--clr-muted);
  font-size: 0.96rem;
  padding: 0 28px 24px;
  line-height: 1.8;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #061020 0%, #0a1a30 50%, #050e1c 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
}

.cta-inner { position: relative; z-index: 2; }

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

.cta-title span {
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { background: var(--clr-bg2); }

.form-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.form-label-custom {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control-custom:focus {
  background: var(--clr-bg);
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.12);
  color: var(--clr-text);
  outline: none;
}

.form-control-custom::placeholder { color: var(--clr-muted); font-size: 0.95rem; }

textarea.form-control-custom { min-height: 130px; resize: vertical; }

.btn-submit {
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  color: #050810;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 15px 44px;
  width: 100%;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(79, 195, 247, 0.3);
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 195, 247, 0.45);
}

.contact-info-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--clr-border);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid rgba(79, 195, 247, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 4px;
}

.contact-info-value { font-size: 1rem; color: var(--clr-text); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--clr-border);
  z-index: 9999;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-text { font-size: 0.9rem; color: var(--clr-muted); line-height: 1.6; }
.cookie-text a { color: var(--clr-accent); }

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  color: #050810;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 11px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn-cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,195,247,0.4); }

.btn-cookie-decline {
  background: transparent;
  color: var(--clr-muted);
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 10px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn-cookie-decline:hover { border-color: var(--clr-muted); color: var(--clr-text); }

/* ============================================================
   MODAL / POPUP
   ============================================================ */
.modal-custom .modal-content {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  color: var(--clr-text);
  text-align: center;
}

.modal-custom .modal-header {
  border-bottom: 1px solid var(--clr-border);
  justify-content: flex-end;
}

.modal-custom .btn-close { filter: invert(1) brightness(0.7); }

.modal-custom .modal-body { padding: 48px 40px 36px; }

.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.15), rgba(2, 136, 209, 0.15));
  border: 2px solid var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--clr-accent);
  margin: 0 auto 24px;
}

.modal-custom .modal-title-custom {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.modal-custom .modal-desc {
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-modal-close {
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  color: #050810;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 13px 40px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-modal-close:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(79,195,247,0.4); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050810;
  border-top: 1px solid var(--clr-border);
  padding: 70px 0 30px;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand span { color: var(--clr-accent); }

.footer-desc { color: var(--clr-muted); font-size: 0.9rem; line-height: 1.7; max-width: 260px; }

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--clr-muted);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-accent); }

.footer-divider {
  border-top: 1px solid var(--clr-border);
  margin: 40px 0 24px;
}

.footer-bottom { color: var(--clr-muted); font-size: 0.82rem; }

.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 40px;
  height: 40px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: rgba(79, 195, 247, 0.1);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #050810 0%, #0a1628 100%);
  padding: 100px 0 70px;
  border-bottom: 1px solid var(--clr-border);
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-hero-breadcrumb {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-top: 14px;
}

.page-hero-breadcrumb a { color: var(--clr-accent); }
.page-hero-breadcrumb span { margin: 0 8px; opacity: 0.4; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-section { background: var(--clr-bg); padding: 80px 0; }

.policy-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
}

.policy-card h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--clr-accent);
}

.policy-card h2:first-child { margin-top: 0; }
.policy-card p { color: var(--clr-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }
.policy-card ul { color: var(--clr-muted); font-size: 0.97rem; line-height: 1.8; padding-left: 20px; margin-bottom: 16px; }
.policy-card ul li { margin-bottom: 8px; }

.policy-updated {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 32px;
}

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
.contacts-section { background: var(--clr-bg); padding: 80px 0; }

/* ============================================================
   ABOUT VISUAL CARD (replaces photo)
   ============================================================ */
.about-visual-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 460px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(79,195,247,0.07) 0%, transparent 70%);
}

.about-visual-inner {
  position: relative;
  width: 280px;
  height: 280px;
}

.about-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #050810;
  box-shadow: 0 0 40px rgba(79,195,247,0.35);
  z-index: 2;
}

/* Animated ring */
.about-visual-inner::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px dashed rgba(79,195,247,0.25);
  animation: spin-slow 20s linear infinite;
}

.about-visual-inner::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.2);
  animation: spin-slow 14s linear infinite reverse;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-ring-item {
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1rem;
  transition: all var(--transition);
}

.about-ring-item:hover {
  border-color: var(--clr-accent);
  background: rgba(79,195,247,0.08);
  transform: scale(1.1);
}

/* Position ring items around center */
.about-ring-item.item-1 { top: 0;    left: 50%; transform: translateX(-50%); }
.about-ring-item.item-2 { top: 20%;  right: 0; }
.about-ring-item.item-3 { bottom: 20%; right: 0; }
.about-ring-item.item-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.about-ring-item.item-5 { bottom: 20%; left: 0; }
.about-ring-item.item-6 { top: 20%;  left: 0; }

.about-badge-standalone {
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  border-radius: var(--radius);
  padding: 18px 28px;
  text-align: center;
  color: #050810;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ============================================================
   PROJECT CARDS (replaces gallery)
   ============================================================ */
.project-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.project-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(79,195,247,0.25); }
.project-card:hover::after { transform: scaleX(1); }

.project-icon {
  width: 56px;
  height: 56px;
  background: rgba(79,195,247,0.08);
  border: 1px solid rgba(79,195,247,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent);
  margin-bottom: 20px;
}

.project-icon.gold-icon {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.18);
  color: var(--clr-gold);
}

.project-location {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 8px;
}

.project-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.project-desc {
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.project-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.ptag {
  background: rgba(79,195,247,0.08);
  border: 1px solid rgba(79,195,247,0.18);
  border-radius: 6px;
  padding: 3px 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.ptag.ptag-gold {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.18);
  color: var(--clr-gold);
}

/* ============================================================
   AUTHOR INITIALS BADGE
   ============================================================ */
.author-initials {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), #0288d1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: #050810;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}


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

@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.8; }
  50%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.animate-fade-up {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-accent  { color: var(--clr-accent) !important; }
.text-gold    { color: var(--clr-gold) !important; }
.text-muted-custom { color: var(--clr-muted) !important; }
.bg-card      { background: var(--clr-card) !important; }
.border-custom{ border-color: var(--clr-border) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  section { padding: 70px 0; }
  .hero-stats { gap: 24px; }
  .hero-float-card.card-1 { left: 0; bottom: 20px; }
  .hero-float-card.card-2 { right: 0; top: 20px; }
  .about-badge-float { right: 0; bottom: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-step { padding-left: 64px; }
  .form-card { padding: 32px 24px; }
  .policy-card { padding: 36px 28px; }
}

@media (max-width: 767px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-float-card { display: none; }
  .footer-desc { max-width: 100%; }
  .cookie-banner .row { flex-direction: column; gap: 16px; }
  .btn-cookie-accept, .btn-cookie-decline { width: 100%; text-align: center; }
}
