/*
Theme Name: XIT Recovery Lite
Author: XIT
Description: IT Service & Data Recovery Theme
Version: 1.0
*/

:root {
    --bg: #050816;
    --bg-soft: #08101f;
    --surface: rgba(10, 18, 35, 0.78);
    --surface-2: rgba(255, 255, 255, 0.03);
    --text: #f8fbff;
    --muted: #a7b4c8;
    --line: rgba(132, 157, 198, 0.18);
    --cyan: #22d3ee;
    --blue: #60a5fa;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --container: 1240px;
    --radius: 28px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 224, 255, 0.14), transparent 26%),
        radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.12), transparent 22%),
        linear-gradient(180deg, #040814 0%, #08101f 45%, #050816 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(5, 8, 22, 0.72);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-badge {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.24);
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.15);
}

.brand-title {
    margin: 0;
    font-weight: 800;
    font-size: 1.1rem;
}

.brand-subtitle {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.primary-menu,
.footer-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu a,
.footer-menu a {
    color: rgba(248,251,255,0.85);
    font-weight: 600;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;

  background: linear-gradient(135deg, #22d3ee, #0ea5e9);
  color: #ffffff; /* FIX → jetzt hell & lesbar */

  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;

  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
  transition: all 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.5);
  background: linear-gradient(135deg, #38bdf8, #0284c7);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(34, 211, 238, 0.3);
  opacity: 0.98;
}

.site-main {
    min-height: 60vh;
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
}

.footer-title {
    margin: 0 0 6px;
    font-weight: 800;
}

.footer-text {
    margin: 0;
    color: var(--muted);
}

.hero-section,
.section {
    padding: 30px 0;
}

.hero-grid,
.two-col {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.glass {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    border-radius: var(--radius);
}

.hero-chip {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.18);
    color: #bff8ff;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-title {
    margin: 18px 0 14px;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.02;
    font-weight: 800;
}

.hero-text {
  font-size: 1.08rem;
  color: #a8bdd1;
  max-width: 620px;
  line-height: 1.7;
  margin-top: 18px;

}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s ease;
}

.btn:hover,
.header-cta:hover {
    transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #22d3ee, #38bdf8);
  color: #04131d;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(34, 211, 238, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(34, 211, 238, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  font-weight: 700;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);

}

.card-grid {
    display: grid;
    gap: 15px;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
    padding: 26px;
    border-radius: 24px;
}

.card h2,
.card h3,
.section-head h2,
.mockup-box h2 {
    margin-top: 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-kicker {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    font-weight: 800;
    color: #8eddf0;
}

.section-head p,
.card p {
    color: var(--muted);
    line-height: 1.7;
}

.mockup {
    padding: 24px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-box {
    width: 100%;
    max-width: 520px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(7,14,28,0.96), rgba(5,10,22,0.96));
    border: 1px solid rgba(255,255,255,0.08);
}

.progress {
    margin-top: 18px;
}

.progress-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--muted);
}

.progress-bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    background: var(--cyan);
}

.progress-bar.secondary span {
    background: var(--blue);
}

.theme-form-placeholder {
    padding: 18px;
    border-radius: 18px;
    background: var(--surface-2);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
}

@media (max-width: 1180px) {
    .hero-grid,
    .two-col,
    .grid-5,
    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .hero-grid,
    .two-col,
    .grid-5,
    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .primary-menu,
    .footer-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-section,
    .section {
        padding: 32px 0;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3.2rem);
    }
}
.faq {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	background: rgba(255,255,255,0.02);
	overflow: hidden;
	transition: all 0.2s ease;
}

.faq-item:hover {
	border-color: rgba(34, 211, 238, 0.3);
}

.faq-question {
	width: 100%;
	padding: 14px 16px;
	text-align: left;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.25s ease;
	padding: 0 16px;
	color: #cbd5f5;
	font-size: 14px;
	line-height: 1.6;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 10px 16px 16px;
}
@media (max-width: 600px) {

    .section {
        padding: 50px 0;
    }

    .faq-question {
        font-size: 14px;
        padding: 12px;
    }

    .faq-answer {
        font-size: 13px;
    }

}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(5, 8, 22, 0.82);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-badge {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.24);
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.15);
}

.brand-title {
    margin: 0;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.brand-subtitle {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    list-style: none;
}

.primary-menu a {
    color: rgba(248,251,255,0.88);
    font-weight: 600;
    font-size: 0.96rem;
    transition: color 0.2s ease;
}

.primary-menu a:hover {
    color: var(--cyan);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(34, 211, 238, 0.2);
    font-weight: 700;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        order: 3;
    }

    .header-cta {
        display: none;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        background: rgba(5, 8, 22, 0.96);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 18px;
        padding: 14px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    }

    .nav.nav-open {
        display: block;
    }

    .primary-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}
.hero-grid-form {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}

.hero-form-wrap {
    padding: 20px;
    border-radius: 24px;
    position: relative;
}

.hero-form-top h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    line-height: 1.1;
}

.hero-form-top p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.hero-form-box {
    margin-top: 18px;
}

.hero-form-box .theme-form-placeholder {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-form-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.hero-form-note {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.hero-form-note strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
    font-size: 15px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    max-width: 760px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 19, 38, 0.72);
  border: 1px solid rgba(34, 211, 238, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.18);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}


.hero-trust-item strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}

.hero-trust-item span {
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 1180px) {
    .hero-grid-form {
        grid-template-columns: 1fr;
    }

    .hero-form-info,
    .hero-trust {
        grid-template-columns: 1fr 1fr 1fr;
   
}

@media (max-width: 820px) {
    .hero-form-info,
    .hero-trust {
        grid-template-columns: 1fr;
    }

  .hero-form-wrap {
  padding: 26px;
  border-radius: 28px;
  position: relative;
  background: linear-gradient(180deg, rgba(6,14,29,0.92), rgba(4,10,22,0.94));
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
    }
}
.hero-form-wrap {
    padding: 30px;
    border-radius: 30px;
    position: relative;
    min-height: 100%;
}

.hero-form-top h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-form-top p {
  color: #9fb3c8;
  line-height: 1.65;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.hero-form-box {
    margin-top: 18px;
}

.wpcf7 {
    width: 100%;
}

.wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    padding: 11px 14px;
    font-size: 15px;
    line-height: 1.4;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wpcf7 textarea {
    min-height: 80px;
    resize: vertical;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: rgba(34, 211, 238, 0.55);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14);
    background: rgba(255,255,255,0.07);
}

.wpcf7 .wpcf7-acceptance {
    display: block;
    margin-top: 2px;
}

.wpcf7 .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

.wpcf7 input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--cyan);
}

.wpcf7 input[type="submit"] {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: var(--cyan);
    color: #04131d;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.wpcf7-spinner {
    margin: 10px 0 0 !important;
}

.wpcf7-response-output {
    margin: 14px 0 0 !important;
    padding: 12px 14px !important;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px;
}

.hero-form-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.hero-form-note {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.hero-form-note strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-size: 15px;
}

@media (max-width: 820px) {
    .hero-form-info {
        grid-template-columns: 1fr;
    }

    .hero-form-wrap {
        padding: 22px;
    }
}
.icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.16);
    margin-bottom: 16px;
}

.icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--cyan);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-trust-item .icon-wrap {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.hero-trust-item strong {
    display: block;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 4px;
}

.hero-trust-item span {
    color: var(--muted);
    font-size: 0.92rem;
}

.feature-card .icon-wrap,
.service-card .icon-wrap {
    margin-bottom: 18px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-icon {
    color: var(--cyan);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 820px) {
    .hero-trust-item {
        align-items: flex-start;
    }
}
.device-grid {
    margin-top: 6px;
}

.device-card {
    text-align: center;
    padding: 28px 22px;
}

.device-card .icon-wrap {
    margin: 0 auto 16px;
}

.device-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.device-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

@media (max-width: 1180px) {
    .device-grid.grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .device-grid.grid-4 {
        grid-template-columns: 1fr;
    }

    .device-card {
        text-align: left;
    }

    .device-card .icon-wrap {
        margin: 0 0 16px;
    }
}
.site-footer {
  margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(3,8,18,0.4), rgba(2,6,14,0.9));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 40px;
  padding: 60px 20px 30px;
}

.footer-description {
  margin-top: 20px;
  color: #9fb3c8;
  line-height: 1.7;
  max-width: 460px;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  color: #8fc0da;
  font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 16px;
  font-size: 18px;
  color: #ffffff;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  color: #9fb3c8;
  line-height: 1.6;
}

.footer-links a,
.footer-contact a {
  color: #9fb3c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
  color: #22d3ee;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #7f97ab;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  color: #7f97ab;
  text-decoration: none;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-right: 10px;
}
.hero-actions {
  margin-bottom: 24px;
}
.hero {
  padding-top: 18px;
  padding-bottom: 12px;
}
.section-header {
  margin-bottom: 10px;
}
.grid {
  gap: 12px;
}