/* ==========================================================================
   Dörtrenk Kolej | Premium Masterpiece Design System
   ========================================================================== */

/* NOT: body, html ve .container ayarları global olarak header.css içinden
   çekilmektedir. Çakışma olmaması için buradan silinmiştir. */

:root {
    --c-primary: #0c5adb;
    --c-primary-dark: #093b8f;
    --c-primary-soft: #eaf2ff;

    --c-dark: #091224;
    --c-dark-soft: #162033;
    --c-text: #64748b;
    --c-bg: #f6f9ff;
    --c-white: #ffffff;

    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --radius-xl: 52px;

    --shadow-soft: 0 12px 40px -14px rgba(8, 40, 92, 0.12);
    --shadow-float: 0 22px 44px -18px rgba(12, 90, 219, 0.22);
    --shadow-card: 0 24px 60px -24px rgba(8, 40, 92, 0.14);
    --glass-bg: rgba(255, 255, 255, 0.84);

    --bezier: cubic-bezier(0.16, 1, 0.3, 1);
}

h1,
h2,
h3 {
    color: var(--c-dark);
    margin: 0;
    line-height: 1.12;
}

p {
    line-height: 1.75;
    margin: 0;
    color: var(--c-text);
}

/* Global Link */
.dr-main {
    position: relative;
    overflow: clip;
}

.dr-main a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   BACKGROUND EFFECTS
   ========================================================================== */

.dr-site-glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.42;
    pointer-events: none;
}

.glow-left {
    width: 360px;
    height: 360px;
    top: 120px;
    left: -140px;
    background: rgba(75, 141, 255, 0.18);
}

.glow-right {
    width: 420px;
    height: 420px;
    top: 40px;
    right: -160px;
    background: rgba(12, 90, 219, 0.14);
}

.dr-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -3;
    opacity: 0.18;
    background-image: radial-gradient(rgba(9, 18, 36, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */

.dr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 1;
    transition:
        transform 0.28s var(--bezier),
        box-shadow 0.28s var(--bezier),
        background 0.28s ease,
        color 0.28s ease,
        border-color 0.28s ease;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.dr-btn:hover {
    transform: translateY(-2px);
}

.dr-btn:active {
    transform: translateY(0);
}

.dr-btn-primary {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: var(--c-white);
    border-color: rgba(12, 90, 219, 0.12);
    box-shadow: 0 12px 28px -18px rgba(12, 90, 219, 0.36);
}

.dr-btn-primary:hover {
    box-shadow: 0 16px 34px -18px rgba(12, 90, 219, 0.44);
}

.dr-btn-ghost {
    background: rgba(255, 255, 255, 0.82);
    color: var(--c-dark);
    border: 1px solid rgba(9, 18, 36, 0.10);
    backdrop-filter: blur(10px);
}

.dr-btn-ghost:hover {
    background: var(--c-white);
    border-color: rgba(12, 90, 219, 0.18);
    box-shadow: 0 14px 28px -20px rgba(9, 18, 36, 0.12);
}

.dr-btn-outline {
    background: transparent;
    color: var(--c-dark);
    border: 1.5px solid rgba(9, 18, 36, 0.14);
}

.dr-btn-outline:hover {
    background: var(--c-dark);
    color: var(--c-white);
    border-color: var(--c-dark);
    box-shadow: 0 14px 28px -18px rgba(9, 18, 36, 0.24);
}

.dr-btn-white {
    background: linear-gradient(180deg, #ffffff 0%, #f2f6fd 100%);
    color: var(--c-dark);
    border: 1px solid rgba(255,255,255,0.42);
    box-shadow: 0 12px 24px -18px rgba(255,255,255,0.62);
}

.dr-btn-white:hover {
    box-shadow: 0 16px 30px -18px rgba(255,255,255,0.76);
}

.dr-btn-dark {
    background: linear-gradient(135deg, #94a3b8  0%, #94a3b8  100%);
    color: var(--c-white);
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 12px 26px -18px rgba(7, 22, 47, 0.34);
}

.dr-btn-dark:hover {
    box-shadow: 0 16px 30px -18px rgba(7, 22, 47, 0.42);
}

.dr-btn-icon svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.dr-btn-icon:hover svg {
    transform: translateX(2px);
}

/* ==========================================================================
   SHARED
   ========================================================================== */

.dr-section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-primary-dark);
    background: rgba(12, 90, 219, 0.07);
    border: 1px solid rgba(12, 90, 219, 0.10);
    margin-bottom: 18px;
}

.dr-section-kicker.light {
    background: rgba(255,255,255,0.10);
    color: #dbeafe;
    border-color: rgba(255,255,255,0.18);
}

.dr-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--c-dark);
    transition: all 0.35s var(--bezier);
}

.dr-link-arrow:hover {
    color: var(--c-primary-dark);
    transform: translateX(4px);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.dr-hero {
    padding: 118px 0 84px;
}

.dr-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.dr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dr-eyebrow-line {
    width: 42px;
    height: 2px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--c-primary) 0%, transparent 100%);
}

.dr-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.dr-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--c-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(12, 90, 219, 0.10);
}

.dr-title-huge {
    font-size: clamp(50px, 6vw, 88px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.96;
    margin-bottom: 24px;
    max-width: 760px;
}

.dr-text-gradient {
    background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dr-hero-desc {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 34px;
}

.dr-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.dr-hero-actions .dr-btn {
    min-width: 150px;
}

.dr-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 760px;
}

.dr-metric-card {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(12, 90, 219, 0.08);
    border-radius: 20px;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    transition: transform 0.35s var(--bezier), box-shadow 0.35s var(--bezier);
}

.dr-metric-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.dr-metric-card strong {
    display: block;
    color: var(--c-dark);
    font-size: 17px;
    margin-bottom: 6px;
}

.dr-metric-card span {
    display: block;
    color: var(--c-text);
    font-size: 14px;
    line-height: 1.6;
}

.dr-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dr-hero-slider-shell {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 14px;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(255,255,255,0.52));
    border: 1px solid rgba(255,255,255,0.46);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.dr-hero-slider-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #edf4ff 0%, #dbe7ff 100%);
    border-radius: 38px;
    position: relative;
    overflow: hidden;
}

.dr-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s var(--bezier), transform 1s var(--bezier);
    transform: scale(1.05);
}

.dr-hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.dr-hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dr-slide-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-white);
}

.placeholder-logo {
    object-fit: contain;
    width: auto;
    height: auto;
    max-width: 58%;
    max-height: 58%;
    margin: 0 auto;
}

.dr-slider-indicators {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    background: rgba(255,255,255,0.34);
    padding: 10px 14px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.dr-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0,0,0,0.18);
    cursor: pointer;
    transition: all 0.4s var(--bezier);
    border: none;
    padding: 0;
}

.dr-dot.active {
    background: var(--c-primary-dark);
    width: 28px;
    border-radius: 999px;
}

.dr-floating-panel {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 16px 20px;
    border-radius: 22px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: var(--shadow-soft);
    z-index: 10;
}

.panel-top {
    top: 8%;
    left: -6%;
    animation: float 6s ease-in-out infinite;
}

.panel-bottom {
    bottom: 10%;
    right: -6%;
    animation: float 8s ease-in-out infinite reverse;
}

.panel-icon {
    font-size: 26px;
    background: var(--c-bg);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.panel-text strong {
    display: block;
    color: var(--c-dark);
    font-size: 16px;
}

.panel-text span {
    font-size: 13px;
    color: var(--c-text);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ==========================================================================
   SHOWCASE
   ========================================================================== */

.dr-showcase {
    padding: 8px 0 44px;
}

.dr-showcase-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.85fr;
    gap: 22px;
}

.dr-showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    padding: 34px 30px;
    min-height: 250px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.45s var(--bezier), box-shadow 0.45s var(--bezier);
}

.dr-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.dr-showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 35%);
}

.dr-showcase-card.accent {
    background: linear-gradient(135deg, #0c5adb 0%, #0b47a8 58%, #08285c 100%);
    color: var(--c-white);
}

.dr-showcase-card.accent h2,
.dr-showcase-card.accent p,
.dr-showcase-card.accent .dr-link-arrow,
.dr-showcase-card.accent .mini-label {
    color: var(--c-white);
}

.dr-showcase-card.dark {
    background: linear-gradient(145deg, #0d1728 0%, #122037 100%);
    color: var(--c-white);
}

.dr-showcase-card.dark h3,
.dr-showcase-card.dark p,
.dr-showcase-card.dark .mini-label {
    color: var(--c-white);
}

.dr-showcase-card.light {
    background: linear-gradient(145deg, #ffffff 0%, #f2f7ff 100%);
    border: 1px solid rgba(12, 90, 219, 0.08);
}

.mini-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.82;
}

.dr-showcase-card h2 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    margin-bottom: 16px;
}

.dr-showcase-card h3 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.dr-showcase-card p {
    font-size: 15px;
    line-height: 1.8;
}

/* ==========================================================================
   SECTION HEAD
   ========================================================================== */

.dr-section-head {
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
}

.dr-section-head h2 {
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.04em;
}

.dr-section-head p {
    font-size: 17px;
    margin-top: 12px;
    max-width: 520px;
}

.dr-head-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto 48px;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */

.dr-features {
    padding: 80px 0;
}

.dr-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dr-feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,255,0.96) 100%);
    padding: 38px 34px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(12, 90, 219, 0.08);
    transition: all 0.4s var(--bezier);
    box-shadow: var(--shadow-soft);
}

.dr-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.dr-card-active {
    background: linear-gradient(145deg, #0d4fc0 0%, #093b8f 55%, #08285c 100%);
    color: var(--c-white);
    border-color: transparent;
}

.dr-card-active h3 {
    color: var(--c-white);
}

.dr-card-active p {
    color: rgba(255,255,255,0.74);
}

.dr-feature-icon {
    font-size: 38px;
    margin-bottom: 24px;
}

.dr-feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

/* ==========================================================================
   VIDEOS
   ========================================================================== */

.dr-video-showcase {
    padding: 80px 0;
}

.dr-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dr-video-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.4s var(--bezier), box-shadow 0.4s var(--bezier);
    display: block;
    border: 1px solid rgba(12, 90, 219, 0.06);
    box-shadow: var(--shadow-soft);
}

.dr-video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.dr-video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #dbe7ff;
}

.dr-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s var(--bezier);
}

.dr-video-card:hover .dr-video-thumb img {
    transform: scale(1.05);
}

.dr-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.dr-play-btn svg {
    width: 24px;
    height: 24px;
}

.dr-video-info {
    padding: 24px;
}

.dr-video-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.dr-video-info p {
    font-size: 14px;
    margin: 0;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */

.dr-gallery {
    padding: 80px 0;
}

.dr-bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.dr-bento-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.dr-bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s var(--bezier);
}

.dr-bento-item:hover img {
    transform: scale(1.08);
}

.dr-bento-large {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: var(--radius-md);
}

.dr-bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-weight: 600;
    font-size: 18px;
    opacity: 0;
    transition: 0.4s;
}

.dr-bento-item:hover .dr-bento-overlay {
    opacity: 1;
}

/* ==========================================================================
   NEWS
   ========================================================================== */

.dr-news {
    padding: 86px 0;
}

.dr-news-shell {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 52px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,249,255,0.97) 100%);
    border: 1px solid rgba(12, 90, 219, 0.08);
    border-radius: var(--radius-lg);
    padding: 58px;
    box-shadow: 0 30px 80px -42px rgba(8, 40, 92, 0.20);
    overflow: hidden;
}

.dr-news-shell::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,90,219,0.10), transparent 70%);
    pointer-events: none;
}

.dr-news-left {
    position: relative;
    z-index: 2;
}

.dr-news-left h2 {
    font-size: clamp(38px, 4vw, 58px);
    margin-bottom: 18px;
    letter-spacing: -0.05em;
    line-height: 1.02;
    max-width: 520px;
}

.dr-news-left p {
    margin-bottom: 28px;
    font-size: 17px;
    max-width: 420px;
}

.dr-news-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dr-news-row {
    display: flex;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(9,18,36,0.07);
    transition: 0.3s;
}

.dr-news-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dr-news-row:hover {
    transform: translateX(8px);
}

.dr-news-date {
    background: var(--c-primary-soft);
    min-width: 84px;
    height: 84px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--c-primary-dark);
}

.dr-news-date strong {
    font-size: 30px;
    line-height: 1;
}

.dr-news-date span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.dr-news-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.dr-news-content a {
    transition: 0.2s;
}

.dr-news-content a:hover {
    color: var(--c-primary-dark);
}

.dr-empty-state {
    min-height: 260px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #f7faff 0%, #edf4ff 100%);
    border: 1px solid rgba(12, 90, 219, 0.08);
}

.dr-empty-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(12,90,219,0.12), rgba(75,141,255,0.16));
    color: var(--c-primary-dark);
    flex-shrink: 0;
}

.dr-empty-icon svg {
    width: 34px;
    height: 34px;
}

.dr-empty-copy h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--c-dark);
    letter-spacing: -0.03em;
}

.dr-empty-copy p {
    font-size: 15px;
    max-width: 420px;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.dr-cta {
    padding: 88px 0 124px;
}

.dr-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 44px;
    padding: 72px 60px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 24%),
        linear-gradient(135deg, #0d4fc0 0%, #0a419d 46%, #08285c 100%);
    box-shadow: 0 42px 110px -42px rgba(8, 40, 92, 0.58);
    isolation: isolate;
}

.dr-cta-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(0,0,0,0.30));
}

.dr-cta-content {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 42px;
    align-items: center;
}

.dr-cta-text h2 {
    font-size: clamp(40px, 4vw, 64px);
    color: var(--c-white);
    margin-bottom: 14px;
    letter-spacing: -0.05em;
    line-height: 0.98;
    max-width: 780px;
}

.dr-cta-text p {
    font-size: 19px;
    color: rgba(255,255,255,0.78);
    max-width: 700px;
}

.dr-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 220px;
}

.dr-cta-actions .dr-btn {
    min-width: 170px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
    .dr-hero-grid,
    .dr-news-shell,
    .dr-cta-content {
        grid-template-columns: 1fr;
    }

    .dr-hero-content {
        text-align: center;
    }

    .dr-hero-desc {
        margin: 0 auto 34px;
    }

    .dr-hero-actions {
        justify-content: center;
    }

    .dr-hero-metrics {
        max-width: 100%;
    }

    .dr-hero-visual {
        margin-top: 12px;
    }

    .dr-showcase-grid,
    .dr-features-grid,
    .dr-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .dr-cta-actions {
        flex-direction: row;
        min-width: auto;
        flex-wrap: wrap;
    }
}

@media (max-width: 820px) {
    .dr-hero {
        padding: 96px 0 64px;
    }

    .dr-title-huge {
        font-size: clamp(42px, 10vw, 64px);
    }

    .dr-hero-metrics,
    .dr-showcase-grid,
    .dr-features-grid,
    .dr-video-grid,
    .dr-bento-gallery {
        grid-template-columns: 1fr;
    }

    .dr-bento-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .dr-news-shell {
        padding: 34px 24px;
    }

    .dr-news-row {
        flex-direction: column;
        gap: 16px;
    }

    .dr-cta-box {
        padding: 48px 26px;
    }

    .dr-floating-panel {
        display: none;
    }

    .dr-empty-state {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .dr-btn {
        width: 100%;
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
        border-radius: 10px;
    }

    .dr-hero-actions,
    .dr-cta-actions {
        flex-direction: column;
    }

    .dr-hero-actions .dr-btn,
    .dr-cta-actions .dr-btn {
        min-width: unset;
        width: 100%;
    }

    .dr-hero-slider-shell {
        padding: 10px;
        border-radius: 34px;
    }

    .dr-hero-slider-wrapper {
        border-radius: 26px;
    }

    .dr-showcase-card,
    .dr-feature-card {
        padding: 28px 22px;
    }

    .dr-news-left h2 {
        font-size: 40px;
    }

    .dr-cta-text h2 {
        font-size: 38px;
    }
}