/* ========================================
    DARKWOLF AGENCY - CLEAN CSS
    ======================================== */

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body {
    color: #fff;
    -webkit-font-smoothing: antialiased;
    font-family: 'Inter', 'Segoe UI', 'Vazirmatn', sans-serif, system-ui, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

/* === VARIABLES === */
:root {
    --silver: #E2E8F0;
    --silver-light: #F8FAFC;
    --silver-dark: #94A3B8;
    --silver-glow: rgba(226, 232, 240, 0.5);
    --silver-accent: #dbe4f0;
    --card-bg: rgba(255, 255, 255, 0.04);
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --surface: #121212;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.65);
    --accent: #ffffff;
    --radius: clamp(20px, 3vw, 32px);
    --gap: 24px;
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgba(201, 201, 201, 0.1), rgba(255, 255, 255, 0.4), rgba(201, 201, 201, 0.1));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* === CONTAINER & SECTION === */
.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 var(--gap);
    width: 100%;
}

.section {
    padding: clamp(40px, 6vh, 80px) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.eyebrow {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 800;
    text-align: center;
    margin-bottom: clamp(24px, 4vh, 48px);
    background: linear-gradient(90deg, #aaa, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

/* === TYPOGRAPHY === */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 90px);
    color: var(--silver);
    letter-spacing: 4px;
    line-height: 0.95;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(226, 232, 240, 0.3);
}

.commitment-large,
.commitment-medium,
.commitment-small {
    font-family: 'Playfair Display', serif;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 2px;
}

.commitment-large {
    font-size: clamp(35px, 7vw, 80px);
}

.commitment-medium {
    font-size: clamp(28px, 5vw, 65px);
    color: var(--silver-accent);
}

.commitment-small {
    font-size: clamp(20px, 3vw, 40px);
    display: block;
    margin-top: 10px;
    font-weight: 300;
    color: var(--silver-dark, #8a8a8a);
    text-transform: uppercase;
}

.section-heading {
    font-size: clamp(24px, 4vw, 32px);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-heading .silver {
    color: var(--silver);
    text-shadow: 0 0 10px rgba(226, 232, 240, 0.2);
}

.section-heading .white {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.silver-gradient {
    background: linear-gradient(135deg, #a0a0a0, #ffffff, #e0e0e0, #ffffff, #a0a0a0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    color: #000;
    padding: 16px 36px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0px 50px rgba(226, 232, 240, 0.2);
    min-height: 48px;
    min-width: 48px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 232, 240, 0.5);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(17, 17, 17, 0.95) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    will-change: transform, opacity;
    transition: transform 0.1s linear, opacity 0.1s linear;
}

.btn-container {
    margin-top: 50px;
}

.hero-footer-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 10;
    padding: 0 40px;
}

.strip-item {
    color: var(--silver);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}

.strip-item span {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    opacity: 0.6;
}

.shine-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--silver), transparent);
    animation: moveShine 4s linear infinite;
}

@keyframes moveShine {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

/* === SWIPER & SLIDES === */
.swiper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 20px;
    overflow: hidden;
}

.swiper-slide {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    opacity: 0.4;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.6s ease;
    will-change: transform;
}

.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.media {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: clamp(60px, 8vw, 90px);
    height: clamp(60px, 8vw, 90px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.play-btn::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
    margin-left: 4px;
}

.play-btn.playing {
    opacity: 0;
    pointer-events: none;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: clamp(20px, 4vh, 40px);
    list-style: none;
    padding: 0;
}

.pagination button {
    width: clamp(40px, 6vw, 60px);
    height: 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination li.active button {
    width: clamp(65px, 9vw, 90px);
}

.pagination button::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--accent);
    border-radius: inherit;
    width: var(--progress, 0%);
}

/* === INFO CARDS === */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    flex: 1 1 300px;
    max-width: 340px;
    padding: 40px 30px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
                border-color 0.6s ease, 
                box-shadow 0.6s ease, 
                background 0.6s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.info-card:hover {
    transform: translateZ(20px) scale(1.02);
    border-color: rgba(226, 232, 240, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.info-card:hover::before {
    opacity: 1;
}

.card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    opacity: 0.08;
    filter: blur(8px);
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.info-card:hover .card-icon {
    opacity: 0.15;
    filter: blur(12px);
    transform: translate(-50%, -50%) scale(1.1);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--silver);
    transition: all 0.3s ease;
}

.info-card.selected .card-icon svg {
    stroke: #fff;
    transform: scale(1.1);
}

.card-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.card-text {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 1;
    max-width: 260px;
}

.info-card:active {
    transform: scale(0.96) !important;
}

.info-card.selected {
    border-color: var(--silver);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(226, 232, 240, 0.2);
}

/* === SERVICES SECTION === */
.services-section {
    background-color: var(--bg-color);
    padding: 120px 20px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px; 
    margin: 0 auto; 
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    0% { --angle: 0deg; }
    100% { --angle: 360deg; }
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.service-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid rgba(226, 232, 240, 0.15);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: conic-gradient(from var(--angle), transparent 60%, rgba(226, 232, 240, 0.8) 90%, #fff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 232, 240, 0.1);
}

.service-card:hover::before {
    opacity: 1;
    animation: rotateBorder 2s linear infinite;
}

.service-id {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 20px;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-id {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.service-icon-wrapper svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.accent-text {
    background: linear-gradient(90deg, #fff, #ccc, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .accent-text {
    background-position: 100% center;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.card-body {
    position: relative;
    z-index: 1;
}

.card-body p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.service-card:hover .card-body p {
    color: rgba(255, 255, 255, 0.8);
}

/* === GALLERY SECTION === */
.gallery-section {
    padding: 40px 0;
    overflow: hidden;
    width: 100%;
    background: #121212a2;
}

.scroller {
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
    mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}

.scroller__inner {
    display: flex;
    width: max-content;
    gap: 30px;
    padding-block: 20px;
    animation: scroll 30s linear infinite;
}

.scroller[data-direction="right"] .scroller__inner {
    animation-direction: reverse;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 15px));
    }
}

.gallery-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border: 1px solid var(--glass-border);
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    flex-shrink: 0;
}

.gallery-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--silver-dark);
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.4s;
}

.gallery-item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: clamp(50px, 8vh, 100px) 20px;
    position: relative;
    overflow: visible;
}

.testimonials-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vh, 60px);
}

.testimonials-eyebrow {
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--silver-dark, #94A3B8);
    margin-bottom: 16px;
    display: block;
}

.testimonials-title {
    margin-top: 12px;
    margin-bottom: 20px;
    font-size: clamp(28px, 4.5vw, 42px);
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(15px, 1.8vw, 18px);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.reviews-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background: var(--glass-bg, rgba(20, 20, 20, 0.6));
    border-radius: 24px;
    padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 40px);
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: visible;
    box-sizing: border-box;
}

.reviews-wrapper .elfsight-app-6792723e-996f-4a39-a4a4-1d7d5316d156 {
    width: 100% !important;
    min-height: 500px;
    display: block;
}

.reviews-wrapper [class*="elfsight"] {
    max-width: 100% !important;
    width: 100% !important;
}

/* === WHO WE ARE SECTION === */
.news-section {
    padding: clamp(40px, 6vh, 80px) clamp(16px, 4vw, 40px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(226, 232, 240, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.news-glass-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 80px; 
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        rgba(20, 20, 25, 0.85) 0%,
        rgba(12, 12, 15, 0.92) 50%,
        rgba(18, 18, 22, 0.88) 100%
    );
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(226, 232, 240, 0.08);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1;
    transform: translateZ(0);
    isolation: isolate;
}

.news-glass-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    padding: 2px;
    background: conic-gradient(
        from var(--angle, 0deg),
        transparent 0%,
        transparent 55%,
        rgba(226, 232, 240, 0.1) 65%,
        rgba(226, 232, 240, 0.5) 78%,
        rgba(255, 255, 255, 1) 82%,
        rgba(226, 232, 240, 0.5) 86%,
        rgba(226, 232, 240, 0.1) 92%,
        transparent 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.news-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/Darkwolf_Wolf_Background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    border-radius: 26px;
}

.news-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.news-subtitle {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--silver-dark, #94A3B8);
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-bottom: 8px;
    display: inline-block;
    position: relative;
}

.news-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--silver, #E2E8F0), transparent);
    border-radius: 2px;
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4.5vw, 42px); 
    line-height: 1.2;
    margin-bottom: 20px; 
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.news-title br {
    display: block;
}

.news-text-block {
    margin-bottom: 8px;
    width: 100%;
}

.news-text-block p {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6; 
    max-width: 850px; 
    margin: 0 auto 12px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.2px;
}

.news-text-block p:last-child {
    margin-bottom: 0;
}

.news-methodology {
    margin: 10px 0;
    padding: 8px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.08);
    border-bottom: 1px solid rgba(226, 232, 240, 0.08);
    width: 100%;
    position: relative;
}

.news-methodology::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(226, 232, 240, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.methodology-intro {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.methodology-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.methodology-steps span {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        var(--silver, #E2E8F0) 40%,
        #ffffff 60%,
        var(--silver-dark, #94A3B8) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    position: relative;
    transition: all 0.3s ease;
    animation: shimmerText 4s linear infinite;
}

.methodology-steps span:nth-child(2) { animation-delay: 0.5s; }
.methodology-steps span:nth-child(3) { animation-delay: 1s; }
.methodology-steps span:nth-child(4) { animation-delay: 1.5s; }

.methodology-steps span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--silver-dark, #94A3B8);
    font-size: 12px;
    -webkit-text-fill-color: var(--silver-dark, #94A3B8);
    opacity: 0.6;
}

.news-final {
    font-size: 16px !important; 
    color: rgba(255, 255, 255, 0.88) !important;
    margin-top: 12px !important; 
    font-weight: 400 !important;
}

.news-final strong {
    font-size: 1.2em; 
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        var(--silver, #E2E8F0) 30%,
        #ffffff 60%,
        var(--silver, #E2E8F0) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1.5px;
    animation: shimmerText 3s linear infinite;
    filter: drop-shadow(0 0 12px rgba(226, 232, 240, 0.3));
}

/* === FAQ SECTION === */
.faq-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    color: var(--silver);
    font-size: 24px;
    transition: transform 0.3s, color 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #a3a3a3;
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active {
    border-color: rgba(226, 232, 240, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

/* === SLIDER SECTION === */
.slider-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.slider-container {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollRightToLeft 30s linear infinite;
    padding: 20px 0;
}

.slider-container.is-paused {
    animation-play-state: paused;
}

@keyframes scrollRightToLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.card {
    position: relative;
    width: 380px;
    height: 500px;
    flex-shrink: 0;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), border-color 0.3s ease;
    border-radius: 20px;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid rgba(192, 192, 192, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card:hover,
.card.flipped {
    border: 2px solid rgba(192, 192, 192, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(192, 192, 192, 0.2);
}

.card.flipped {
    transform: rotateY(180deg);
}

.card-content, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    box-sizing: border-box;
}

.card-content {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 40%, transparent 100%);
    color: white;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.card-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.card-back {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    transform: rotateY(180deg);
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    border: 2px solid rgba(192, 192, 192, 0.3);
}

.card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(192, 192, 192, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.card-back::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 12px;
    z-index: 0;
    pointer-events: none;
}

.card-back h3,
.card-back p {
    position: relative;
    z-index: 1;
}

.card-back h3 {
    margin: 0 0 20px 0;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.card-back p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #cccccc;
    max-width: 320px;
}

.card-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 35px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #f5f5f5 100%);
    border: 2px solid #d0d0d0;
    color: #333333;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.card-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.5);
    background: linear-gradient(135deg, #f5f5f5 0%, #d0d0d0 50%, #ffffff 100%);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    opacity: 0;
}

.animate-fadeInUp.in-view {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* === PILLARS SECTION === */
.pillars-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.top-divider, .bottom-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 30px 0;
}

.line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.3), transparent);
}

.diamond {
    width: 6px;
    height: 6px;
    border: 1px solid #c0c0c0;
    transform: rotate(45deg);
    margin: 0 10px;
    background-color: #060608;
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    position: relative;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.pillar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(192, 192, 192, 0.15), transparent);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #e6e6e6;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.05));
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #cccccc;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.pillar-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #8a8a93;
    max-width: 220px;
}

.pillar-item:hover .icon-wrapper {
    transform: scale(1.08);
    color: #ffffff;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.pillar-item:hover .pillar-title {
    color: #ffffff;
}

/* === DW SERVICES GRID === */
.dw-container {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
}

.dw-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.dw-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    z-index: 1;
    display: flex;
}

.dw-card::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background-image: conic-gradient(
        transparent, 
        transparent, 
        rgba(255, 255, 255, 0.8),
        transparent, 
        transparent
    );
    top: -25%;
    left: -25%;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes dw-rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dw-card:hover::before {
    opacity: 1;
    animation: dw-rotate-border 4s linear infinite;
}

.dw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 
                0 0 20px rgba(255, 255, 255, 0.1);
}

.dw-card-inner {
    position: relative;
    background-color: #080808;
    background-image: linear-gradient(270deg, rgba(8, 8, 8, 0.1) 0%, rgba(8, 8, 8, 0.85) 45%, #080808 80%), url('/assets/images/Darkwolf_Wolf_Background.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    border-radius: 15px;
    inset: 1px;
    padding: 40px;
    z-index: 1;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    display: flex;
    flex-direction: column;
}

.dw-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.dw-card:hover::after {
    opacity: 0;
}

.dw-card-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 95% 5%, rgba(200, 200, 200, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 5% 95%, rgba(200, 200, 200, 0.06) 0%, transparent 30%);
    z-index: -1;
    pointer-events: none;
    border-radius: 15px;
}

.dw-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dw-icon-container {
    width: 65px;
    height: 65px;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.dw-card:hover .dw-icon-container {
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.dw-card-number {
    font-size: 16px;
    font-weight: 700;
    color: #6b7280;
    transition: color 0.3s ease;
}

.dw-card:hover .dw-card-number {
    color: #d1d5db;
}

.dw-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.dw-separator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.dw-separator .dw-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #a3a3a3;
    box-shadow: 0 0 6px rgba(163, 163, 163, 0.8);
    transition: all 0.3s ease;
}

.dw-separator .dw-line {
    height: 1px;
    width: 120px;
    background: linear-gradient(to right, #a3a3a3, rgba(163, 163, 163, 0.2), transparent);
    transition: width 0.4s ease;
}

.dw-card:hover .dw-separator .dw-circle {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.dw-card:hover .dw-separator .dw-line {
    width: 180px;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.3), transparent);
}

.dw-card-text {
    font-size: 14.5px;
    color: #a3a3a3;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 80%;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.dw-card:hover .dw-card-text {
    color: #d4d4d4;
}

.dw-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a3a3a3;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: auto;
}

.dw-explore-btn:hover, .dw-explore-btn:active {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.dw-explore-btn span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.dw-explore-btn:hover span {
    transform: translateX(6px);
}

/* === WOLF STORY SECTION === */
.wolf-story-exact {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #00000081;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    overflow: hidden;
}

.wolf-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.wolf-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 15%, #000 85%);
}

.wolf-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.wolf-content .main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255,255,255,0.15), 0 0 60px rgba(255,255,255,0.05);
    letter-spacing: 1px;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 300;
    color: #b3b3b3;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.diamond-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    gap: 12px;
}

.wolf-content .diamond {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 30px rgba(255,255,255,0.15);
    animation: diamondPulse 3s ease-in-out infinite;
}

.diamond-divider::before,
.diamond-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

@keyframes diamondPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 30px rgba(255,255,255,0.15); }
    50% { box-shadow: 0 0 25px rgba(255,255,255,0.7), 0 0 50px rgba(255,255,255,0.25); }
}

.traits-wrapper {
    position: relative;
    display: inline-block;
    margin: 20px 0 40px 0;
    text-align: left;
}

.glowing-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
    box-shadow: 0 0 12px rgba(255,255,255,0.4), 0 0 25px rgba(255,255,255,0.15);
    animation: lineGlow 4s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 12px rgba(255,255,255,0.4), 0 0 25px rgba(255,255,255,0.15); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(255,255,255,0.7), 0 0 40px rgba(255,255,255,0.25); }
}

.traits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.traits-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: #dfdfdf;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.8s ease forwards;
}

.traits-list li:nth-child(1) { animation-delay: 0.2s; }
.traits-list li:nth-child(2) { animation-delay: 0.5s; }
.traits-list li:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}

.traits-list li:last-child {
    margin-bottom: 0;
}

.diamond-bullet {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(255,255,255,0.6), 0 0 30px rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    animation: bulletGlow 2.5s ease-in-out infinite;
}

@keyframes bulletGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(255,255,255,0.6), 0 0 30px rgba(255,255,255,0.2); }
    50% { box-shadow: 0 0 25px rgba(255,255,255,0.9), 0 0 50px rgba(255,255,255,0.35); }
}

.business-text {
    font-family: 'Montserrat', sans-serif;
    margin: 40px 0;
}

.business-text p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: #cccccc;
    margin: 14px 0;
    letter-spacing: 1px;
}

.foundation-text {
    font-family: 'Montserrat', sans-serif;
    margin: 40px 0;
}

.foundation-text p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: #999999;
    margin: 10px 0;
    font-style: italic;
}

.epic-footer {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 3px;
    margin-top: 50px;
    text-shadow: 0 0 30px rgba(255,255,255,0.2), 0 0 60px rgba(255,255,255,0.1);
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
}

.wolf-story-exact .cta-wrapper.news-actions {
    margin-top: 40px;
    justify-content: center;
}

.wolf-story-exact .cta-wrapper .btn-primary {
    padding: 14px 32px;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* === PORTFOLIO HEADER === */
.portfolio-header {
    padding: 20px 20px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.portfolio-title {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--silver);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(226, 232, 240, 0.3);
    text-align: center;
    width: 100%;
}

.portfolio-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #ccc;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
    width: 100%;
}

/* === NEWS ACTIONS === */
.news-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.news-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 35px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #f5f5f5 100%);
    border: 2px solid #d0d0d0;
    color: #333333;
    cursor: pointer;
}

.news-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.5);
    background: linear-gradient(135deg, #f5f5f5 0%, #d0d0d0 50%, #ffffff 100%);
}

.news-actions .btn-secondary {
    background: linear-gradient(135deg, #6b6b6b 0%, #4a4a4a 100%) !important;
    border: 2px solid #c0c0c0 !important;
    color: #ffffff !important;
}

.news-actions .btn-secondary:hover {
    background: linear-gradient(135deg, #7a7a7a 0%, #5a5a5a 100%) !important;
    border-color: #e0e0e0 !important;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
    transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .card {
        width: 340px;
        height: 450px;
    }
    
    .slider-container {
        gap: 35px;
    }
}

@media (max-width: 1024px) {
    .news-glass-container {
        max-width: 92%;
        padding: 22px 35px;
    }
    
    .news-title {
        font-size: clamp(20px, 3.5vw, 28px);
    }
    
    .methodology-steps {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .pillars-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillar-item:nth-child(2)::after {
        display: none;
    }
    
    .pillar-item {
        border-bottom: 1px solid rgba(192, 192, 192, 0.05);
    }
    
    .pillar-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .dw-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dw-container {
        max-width: 600px;
    }

    .card {
        width: 300px;
        height: 400px;
    }
    
    .slider-container {
        gap: 30px;
    }
    
    .card-content h3 {
        font-size: 22px;
    }
    
    .card-content p {
        font-size: 14px;
    }
    
    .card-back h3 {
        font-size: 22px;
    }
    
    .card-back p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 20px;
    }
    
    .section-heading {
        margin-bottom: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .service-card:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .cards-container {
        gap: 20px;
    }
    
    .info-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 25px;
    }
    
    .news-section {
        padding: 30px 12px;
    }
    
    .news-glass-container {
        max-width: 96%;
        padding: 20px 18px;
        border-radius: 22px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: rgba(14, 14, 18, 0.95);
    }
    
    .news-glass-container::before {
        border-radius: 24px;
        animation-duration: 5s;
    }
    
    .news-bg-image {
        border-radius: 20px;
        opacity: 0.18;
    }
    
    .news-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 6px;
        padding-bottom: 6px;
    }
    
    .news-subtitle::after {
        width: 30px;
    }
    
    .news-title {
        font-size: clamp(18px, 5vw, 24px);
        margin-bottom: 10px;
        letter-spacing: 0.3px;
    }
    
    .news-text-block {
        margin-bottom: 6px;
    }
    
    .news-text-block p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .news-methodology {
        margin: 8px 0;
        padding: 6px 0;
    }
    
    .methodology-intro {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .methodology-steps {
        gap: 8px;
    }
    
    .methodology-steps span {
        font-size: clamp(16px, 4vw, 22px);
        letter-spacing: 0.5px;
    }
    
    .methodology-steps span:not(:last-child)::after {
        right: -6px;
        font-size: 10px;
    }
    
    .news-final {
        font-size: 14px !important;
    }
    
    .news-final strong {
        font-size: 1.05em;
        letter-spacing: 1px;
    }
    
    .btn-primary {
        width: 80%;
    }
    
    .hero-footer-strip {
        height: 60px;
        padding: 0px;
    }
    
    .strip-item {
        font-size: 12px;
    }
    
    .strip-item span {
        font-size: 18px;
    }
    
    .play-btn,
    .hero-overlay,
    .info-card,
    .service-card,
    .news-glass-container,
    .hero-footer-strip,
    .reviews-wrapper {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(17, 17, 17, 0.85) !important;
    }
    
    .play-btn {
        background: rgba(255, 255, 255, 0.2) !important;
    }
    
    .card-content {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .info-card, 
    .service-card, 
    .swiper-slide {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
    }
    
    .scroller__inner {
        animation-duration: 60s !important;
    }

    .section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .dw-card-inner {
        padding: 25px;
    }

    .dw-icon-container {
        width: 50px;
        height: 50px;
    }

    .dw-card-title {
        font-size: 19px;
    }

    .dw-card-text {
        font-size: 13.5px;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .dw-separator .dw-line {
        width: 80px;
    }
    
    .dw-card:hover .dw-separator .dw-line {
        width: 120px;
    }

    .testimonials-section {
        padding: 50px 16px;
    }
    
    .testimonials-header {
        margin-bottom: 30px;
    }
    
    .reviews-wrapper {
        border-radius: 16px;
        padding: 20px 12px;
    }
    
    .reviews-wrapper .elfsight-app-6792723e-996f-4a39-a4a4-1d7d5316d156 {
        min-height: 450px;
    }

    .wolf-story-exact {
        padding: 60px 15px;
    }

    .epic-footer {
        letter-spacing: 2px;
        font-size: clamp(0.9rem, 3.5vw, 1.5rem);
        white-space: nowrap;
    }

    .wolf-story-exact .cta-wrapper .btn-primary {
        padding: 11px 22px;
        font-size: 12px;
    }

    .traits-list li {
        gap: 15px;
    }

    .diamond-bullet {
        width: 10px;
        height: 10px;
    }

    .diamond-divider::before,
    .diamond-divider::after {
        width: 40px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn::after {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 16px solid #fff;
    }

    .card {
        width: 280px;
        height: 370px;
    }
    
    .slider-container {
        gap: 25px;
    }
    
    .card-content, .card-back {
        padding: 25px;
    }
    
    .card-content h3 {
        font-size: 20px;
    }
    
    .card-content p {
        font-size: 13px;
    }
    
    .card-back h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .card-back p {
        font-size: 13px;
        line-height: 1.7;
    }

    .card-cta-btn {
        padding: 10px 20px;
        font-size: 12px;
        margin-top: 15px;
    }

    .news-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        gap: 8px;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .news-actions .btn-primary {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto !important;
        min-width: 0 !important;
        flex: 0 1 auto !important;
        padding: 9px 14px !important;
        font-size: 12px !important;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 576px) {
    .pillars-container {
        grid-template-columns: 1fr;
    }
    
    .pillar-item::after {
        display: none;
    }
    
    .pillar-item {
        border-bottom: 1px solid rgba(192, 192, 192, 0.05);
        padding: 30px 15px;
    }
    
    .pillar-item:last-child {
        border-bottom: none;
    }

    .card {
        width: 260px;
        height: 340px;
    }
    
    .slider-container {
        gap: 20px;
    }
    
    .card-content, .card-back {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 18px;
    }
    
    .card-content p {
        font-size: 12px;
    }
    
    .card-back h3 {
        font-size: 18px;
    }
    
    .card-back p {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .news-glass-container {
        padding: 18px 14px;
        border-radius: 18px;
    }
    
    .news-glass-container::before {
        border-radius: 20px;
        padding: 1.5px;
    }
    
    .news-title {
        font-size: clamp(16px, 5.5vw, 22px);
        margin-bottom: 8px;
    }
    
    .news-text-block p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .methodology-steps {
        gap: 6px;
    }
    
    .methodology-steps span {
        font-size: clamp(13px, 4.5vw, 16px);
    }
    
    .methodology-steps span:not(:last-child)::after {
        right: -5px;
        font-size: 9px;
    }
    
    .news-final strong {
        font-size: 1em;
    }

    .testimonials-section {
        padding: 40px 12px;
    }
    
    .testimonials-header {
        margin-bottom: 25px;
    }
    
    .reviews-wrapper {
        border-radius: 12px;
        padding: 15px 8px;
    }
    
    .testimonials-title {
        font-size: clamp(22px, 6vw, 28px);
    }
    
    .testimonials-subtitle {
        font-size: clamp(14px, 4vw, 16px);
    }
    
    .reviews-wrapper .elfsight-app-6792723e-996f-4a39-a4a4-1d7d5316d156 {
        min-height: 400px;
    }

    .main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .epic-footer {
        letter-spacing: 1.5px;
        font-size: clamp(0.75rem, 3.8vw, 1.2rem);
        white-space: nowrap;
    }

    .wolf-story-exact .cta-wrapper .btn-primary {
        padding: 10px 18px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }

    .play-btn::after {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 13px solid #fff;
        margin-left: 3px;
    }

    .card {
        width: 240px;
        height: 320px;
    }
    
    .slider-container {
        gap: 15px;
    }

    .card-cta-btn {
        padding: 9px 18px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 380px) {
    .news-glass-container {
        padding: 15px 12px;
    }
    
    .methodology-steps {
        gap: 5px;
    }
    
    .methodology-steps span {
        font-size: 14px;
    }
}

@media (max-height: 520px) and (orientation: landscape) {
    .section {
        padding: 20px 0;
    }
    
    .play-btn {
        width: 48px;
        height: 48px;
    }
    
    .news-section {
        padding: 15px 12px;
    }
    
    .news-glass-container {
        padding: 15px 25px;
    }
    
    .news-title {
        font-size: clamp(18px, 3.5vw, 24px);
        margin-bottom: 8px;
    }
    
    .news-methodology {
        margin: 6px 0;
        padding: 6px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-glass-container::before,
    .service-card::before {
        animation: none;
        background: linear-gradient(
            135deg,
            rgba(226, 232, 240, 0.2) 0%,
            rgba(226, 232, 240, 0.05) 50%,
            rgba(226, 232, 240, 0.2) 100%
        );
    }
    
    .methodology-steps span,
    .news-final strong {
        animation: none;
    }
    
    .animate-fadeInUp {
        opacity: 1;
        transform: none;
    }
    
    .animate-fadeInUp.in-view {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .reviews-wrapper {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@media (hover: none) {
    .reviews-wrapper {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
}