/* ═══════════════════════════════════════════════════════════════
   🇨🇭 Swiss Minimal Contact Section
   Pure black & white, 1px borders, no gradients
   ═══════════════════════════════════════════════════════════════ */

.edgeone-style-wrapper {
    --bg-color: #fafaf9;
    --text-primary: #1c1917;
    --text-secondary: #57534e;
    --card-bg: #ffffff;
    --card-border: #d6d3d1;
    --card-hover-border: #a8a29e;
    --shadow: none;
    --accent-gradient: #1c1917;
    --accent-blue: #1c1917;
    --accent-green: #57534e;
    --btn-bg: #1c1917;
    --btn-text: #fafaf9;
    --btn-hover: #44403c;
    --qr-filter: none;
    --tag-bg: #f5f5f4;
    --dot-color: transparent;
    
    font-family: var(--font-primary);
    color: var(--text-primary);
}

/* EdgeOne section layout (scoped to Contact section on the landing page) */
.edgeone-style-wrapper.edgeone-contact {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
    padding: 40px 0;
    -webkit-font-smoothing: antialiased;
}

/* Swiss Minimal: No dot pattern */
.edgeone-style-wrapper.edgeone-contact::before {
    display: none;
}

/* Swiss Minimal: No gradient background */
.edgeone-style-wrapper.edgeone-contact .bg-gradient {
    display: none;
}

@keyframes gradientFloat{0%,100%{transform:translate(0,0) rotate(0deg);}50%{transform:translate(-2%,2%) rotate(1deg);}}

.edgeone-style-wrapper .edgeone-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.edgeone-style-wrapper .edgeone-main {
    width: 100%;
    margin-bottom: 40px;
}

/* Swiss Dark Mode */
@media (prefers-color-scheme: dark) {
    .edgeone-style-wrapper {
        --bg-color: #0c0a09;
        --text-primary: #fafaf9;
        --text-secondary: #a8a29e;
        --card-bg: #1c1917;
        --card-border: #44403c;
        --card-hover-border: #57534e;
        --shadow: none;
        --btn-bg: #fafaf9;
        --btn-text: #1c1917;
        --btn-hover: #d6d3d1;
        --qr-filter: invert(1) hue-rotate(180deg) brightness(0.9);
        --tag-bg: #292524;
        --dot-color: transparent;
    }

    .edgeone-style-wrapper .card-icon {
        background: var(--tag-bg);
        border-color: var(--card-border);
    }

    .edgeone-style-wrapper .card-icon i {
        -webkit-text-fill-color: var(--text-primary);
        color: var(--text-primary);
    }

    .edgeone-style-wrapper .footer-links a:hover {
        color: var(--btn-text);
        border-color: var(--card-hover-border);
        background: var(--tag-bg);
    }
}

/* Refined Grid */
.edgeone-style-wrapper .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--card-border);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Swiss Minimal: Clean card, no decorative elements */
.edgeone-style-wrapper .card {
    background: var(--card-bg);
    border: none;
    border-radius: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background 0.15s cubic-bezier(0.33, 1, 0.68, 1);
    position: relative;
    overflow: hidden;
    box-shadow: none;
    height: 100%;
}

.edgeone-style-wrapper .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.edgeone-style-wrapper .card:hover::after {
    transform: scaleX(1);
}

.edgeone-style-wrapper .card::before {
    display: none;
}

.edgeone-style-wrapper .card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
    background-color: var(--tag-bg);
}

.edgeone-style-wrapper .card:hover::before {
    display: none;
}

/* Refined icon box */
.edgeone-style-wrapper .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--tag-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.edgeone-style-wrapper .card-icon i {
    font-size: 24px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--text-primary);
    color: var(--text-primary);
}

.edgeone-style-wrapper .card-header {
    margin-bottom: 16px;
    width: 100%;
}

.edgeone-style-wrapper .card-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.edgeone-style-wrapper .card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edgeone-style-wrapper .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Refined QR wrapper */
.edgeone-style-wrapper .qr-wrapper {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.edgeone-style-wrapper .card:hover .qr-wrapper {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.edgeone-style-wrapper .qr-wrapper::after {
    display: none;
}

.edgeone-style-wrapper .card:hover .qr-wrapper::after {
    display: none;
}

.edgeone-style-wrapper .qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: var(--qr-filter);
    transition: filter 0.15s ease;
    position: relative;
    z-index: 1;
}

/* Swiss Minimal: Clean email list */
.edgeone-style-wrapper .email-list {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edgeone-style-wrapper .email-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    padding: 12px;
    background: var(--tag-bg);
    border-radius: 10px;
    width: 100%;
    transition: background 0.2s ease;
    border: 1px solid var(--card-border);
}

.edgeone-style-wrapper .email-item:hover {
    background: var(--card-border);
    border-color: var(--card-hover-border);
    transform: none;
}

.edgeone-style-wrapper .email-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.edgeone-style-wrapper .email-label i {
    font-size: 14px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--text-secondary);
    color: var(--text-secondary);
}

.edgeone-style-wrapper .email-address {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    word-break: break-all;
}

/* Refined action button */
.edgeone-style-wrapper .action-btn {
    background: var(--btn-bg);
    color: var(--btn-text);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.edgeone-style-wrapper .action-btn::before {
    display: none;
}

.edgeone-style-wrapper .action-btn:hover {
    background: var(--btn-hover);
    transform: none;
    color: var(--btn-text);
}

.edgeone-style-wrapper .action-btn:hover::before {
    display: none;
}

.edgeone-style-wrapper .action-btn i {
    font-size: 16px;
}

/* Footer - Swiss Minimal */
.edgeone-style-wrapper footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.edgeone-style-wrapper .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: center;
}

.edgeone-style-wrapper .footer-links a {
    color: var(--text-secondary);
    font-size: 20px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--tag-bg);
    border: 1px solid var(--card-border);
    position: relative;
}

.edgeone-style-wrapper .footer-links a::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--bg-color);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 10;
    transform: translateX(-50%) translateY(4px);
}

/* Tooltip arrow */
.edgeone-style-wrapper .footer-links a::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 10;
}

.edgeone-style-wrapper .footer-links a:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.edgeone-style-wrapper .footer-links a:hover::before {
    opacity: 1;
    visibility: visible;
}

.edgeone-style-wrapper .footer-links a:hover {
    color: var(--btn-text);
    transform: translateY(-2px);
    border-color: var(--card-hover-border);
    background: var(--tag-bg);
}

.edgeone-style-wrapper .footer-links a:active {
    transform: translateY(0) scale(0.93);
    transition-duration: 0.1s;
}

.edgeone-style-wrapper .footer-links a .platform-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.edgeone-style-wrapper .footer-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.edgeone-style-wrapper .footer-text i {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--text-secondary);
    color: var(--text-secondary);
}

/* Swiss Minimal: No entrance animations */
.edgeone-style-wrapper .card:nth-child(1) { animation: none; }
.edgeone-style-wrapper .card:nth-child(2) { animation: none; }
.edgeone-style-wrapper .card:nth-child(3) { animation: none; }

.edgeone-style-wrapper .highlight {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .edgeone-style-wrapper .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .edgeone-style-wrapper .card:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .edgeone-style-wrapper .edgeone-container {
        padding: 24px 16px;
    }
    .edgeone-style-wrapper .grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    .edgeone-style-wrapper .card {
        padding: 20px;
    }
    .edgeone-style-wrapper .card:nth-child(3) {
        grid-column: span 1;
        max-width: none;
    }
}
